Skip to content

Instantly share code, notes, and snippets.

@ssig33
Created November 29, 2016 01:28
Show Gist options
  • Save ssig33/672e17163e8ae45ad4a386f66083ad91 to your computer and use it in GitHub Desktop.
Save ssig33/672e17163e8ae45ad4a386f66083ad91 to your computer and use it in GitHub Desktop.
// ==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