auto clicks reddit links to move past the comments page
目前為
// ==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 3
// ==/UserScript==
var link = document.getElementsByClassName("s8vz3gv-0 IUfxY");
if (link && link[0] && link[0].href && link[0].href != document.URL)
{
window.open(link[0].href);
}