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 10.3
// ==/UserScript==
var results = document.evaluate('//shreddit-post//a', document, null, XPathResult.ANY_TYPE, null);
var node;
while (node = results.iterateNext()) {
var url = new URL(node.href);
if (url.hostname.toLowerCase().indexOf("reddit") === -1) {
console.log('reddit-auto-click', url);
window.open(url.href);
break;
}
}