reddit-auto-click

auto clicks reddit links to move past the comments page

目前为 2015-05-11 提交的版本。查看 最新版本

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

// body

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

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