Created
January 16, 2020 04:16
-
-
Save matthewjosephtaylor/c136bc247dbd347682dd42fb436e4530 to your computer and use it in GitHub Desktop.
Revisions
-
matthewjosephtaylor created this gist
Jan 16, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ // ==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; }'); })();