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== |
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
#!/bin/sh | |
# Shell script that watches a file and executes a command if the file changes. | |
# Matt Taylor | |
# http://blog.matthewjosephtaylor.com | |
# License: This is free and unencumbered software released into the public domain. | |
# Thanks to code/tips from some helpful souls on irc.freenode.net ##unix | |
# All errors are of course my own. :) | |