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);
}