Skip to content

Instantly share code, notes, and snippets.

@terrehbyte
Last active August 29, 2015 14:01
Show Gist options
  • Save terrehbyte/a4df227596ea6f34b0fa to your computer and use it in GitHub Desktop.
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.
// ==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