// ==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; }'); })();