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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址