Created
January 16, 2020 04:16
-
-
Save matthewjosephtaylor/c136bc247dbd347682dd42fb436e4530 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 DeIconify Google Search Results | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Remove most website icons from search | |
// @author @matt_taylor | |
// @match https://www.google.com/search* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('a > div > img { display: none !important; }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run at ->
document-start
(settings page) to remove icon 'flicker' on page load.