Skip to content

Instantly share code, notes, and snippets.

@matthewjosephtaylor
Created January 16, 2020 04:16
Show Gist options
  • Select an option

  • Save matthewjosephtaylor/c136bc247dbd347682dd42fb436e4530 to your computer and use it in GitHub Desktop.

Select an option

Save matthewjosephtaylor/c136bc247dbd347682dd42fb436e4530 to your computer and use it in GitHub Desktop.

Revisions

  1. matthewjosephtaylor created this gist Jan 16, 2020.
    14 changes: 14 additions & 0 deletions deiconify_google.user.js
    Original 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; }');
    })();