Skip to content

Instantly share code, notes, and snippets.

@matthewjosephtaylor
Created January 16, 2020 04:16
Show Gist options
  • Save matthewjosephtaylor/c136bc247dbd347682dd42fb436e4530 to your computer and use it in GitHub Desktop.
Save matthewjosephtaylor/c136bc247dbd347682dd42fb436e4530 to your computer and use it in GitHub Desktop.
// ==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; }');
})();
@matthewjosephtaylor
Copy link
Author

Run at -> document-start (settings page) to remove icon 'flicker' on page load.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment