reddit-auto-click

auto clicks reddit links to move past the comments page

2016-05-14 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name        reddit-auto-click
// @description auto clicks reddit links to move past the comments page
// @namespace   ziffusion.com
// @include     http*://*.reddit.com/r/*/comments/*
// @version     2
// ==/UserScript==

// body

var link = unsafeWindow.$(".thumbnail");

if (link && link[0] && link[0].href && link[0].href != document.URL)
{
    window.open(link[0].href);
}