// ==UserScript== // @name Google big brother is watching // @namespace http://www.google.com/ // @version 0.2 // @description Google is always watching, be vigilant my friends! // @author @aproctor, @m1m1k // @match https://www.google.com/* // @match https://www.google.ca/* // @grant none // @downloadURL none // ==/UserScript== if (GM_info.isIncognito) { // moved code out to ALWAYS! not just during Incognito mode... (althought that's good too) } var hpLogo = document.getElementById('hplogo'); hpLogo.style.display = "none"; var lga = document.getElementById('lga'); lga.style.backgroundImage = "url('https://wanna-joke.com/wp-content/uploads/2016/01/google-big-brother-watching.jpg')"; lga.style.backgroundRepeat = "no-repeat"; // Now some styling to get it to show up in the right spot and show the whole thing. lga.style.width = "554px"; lga.style.height = "854px"; lga.style.marginRight = "auto"; lga.style.marginLeft = "auto"; //OLD VERSION //lga.style.backgroundImage = "url('http://i.imgur.com/jCxpBrW.jpg')"; //lga.style.width = "1000px"; //lga.style.height = 600; //lga.removeAttribute('src');