Created
November 29, 2016 01:28
-
-
Save ssig33/672e17163e8ae45ad4a386f66083ad91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name fuck google sec. | |
// @namespace http://ssig33.com | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author ssig33 | |
// @match https://www.google.co.jp/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
var f = function(){ | |
var a = document.evaluate("//a[contains(., '更新しない')]", document, null, XPathResult.ANY_TYPE, null ).iterateNext(); | |
a.click(); | |
a.remove(); | |
setTimeout(function(){f();}, 200); | |
}; | |
setTimeout(()=>{f();}, 500); | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment