Skip to content

Instantly share code, notes, and snippets.

@ide-an
Created May 29, 2013 12:49
Show Gist options
  • Save ide-an/5670032 to your computer and use it in GitHub Desktop.
Save ide-an/5670032 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @include https://*.google.co.jp/*
// ==/UserScript==
(function(){
var f = function(){
Array.prototype.forEach.apply(document.querySelectorAll(
'img[src^="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAIAAACR5s1WAAAAA3NCSVQICAjb4U/"]'),
[function(v){
if(v.style.display!=="none"){
v.style.display = "none";
}
}]);
};
setInterval(f,1000);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment