Created
November 4, 2012 23:17
-
-
Save arantius/4014321 to your computer and use it in GitHub Desktop.
google logo script
This file contains 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 Google Logo | |
// @namespace test | |
// @include http://*.google.*/ | |
// @include https://*.google.*/ | |
// @version 1 | |
// ==/UserScript== | |
var oldLogo = document.getElementById('hplogo'); | |
var newLogo = document.createElement('img'); | |
newLogo.id = "User-Logo"; | |
newLogo.border = 'no' | |
newLogo.src = 'http://www.google.com/logos/2012/Googles_14th_Birthday-2012-2-hp.gif'; | |
oldLogo.parentNode.replaceChild(newLogo, oldLogo); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment