Last active
August 29, 2015 14:01
-
-
Save terrehbyte/a4df227596ea6f34b0fa to your computer and use it in GitHub Desktop.
This poorly constructed script will change the Google homepage logo into the SOS Brigade logo.
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== | |
// @id GoogleSOS | |
// @name Google to SOS Changer | |
// @version 1.0.0 | |
// @namespace http://terrehbyte.com | |
// @description Changes Google's HP Logo to TMoHS SOS Logo | |
// @include https://www.google.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var hpImg = document.getElementById('hplogo'); | |
hpImg.src = "http://i.imgur.com/wij0GGw.png"; | |
hpImg.height = 200; | |
hpImg.removeAttribute("width"); | |
hpImg.removeAttribute("style"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment