robbyrussell (owner)

Revisions

gist: 46193 Download_button fork
public
Description:
Greasemonkey script to change the favicon for Google to a old and improved (and less colorful one)
Public Clone URL: git://gist.github.com/46193.git
Embed All Files: show embed
better-favicon-for-google.js #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ==UserScript==
// @name BetterFavicon
// @namespace planetargon
// @description A better favicon for google
// @include http://*.google.com/
// ==/UserScript==
 
var favicon_link_html = document.createElement('link');
favicon_link_html.rel = 'icon';
favicon_link_html.href = 'http://robbyonrails.com/files/google-favicon.ico';
favicon_link_html.type = 'image/x-icon';
 
try {
  document.getElementsByTagName('head')[0].appendChild( favicon_link_html );
}
catch(e) { }