- Install Tampermonkey
- Create new user script and paste the contents of
userscript.js
there
Created
August 4, 2014 11:07
-
-
Save dominykas/f1856e8ef9620ccd31b2 to your computer and use it in GitHub Desktop.
Hide creeps on Analytics login
This file contains hidden or 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 Hides creeps on analytics login | |
// @namespace http://use.i.E.your.homepage/ | |
// @version 0.1 | |
// @description enter something useful | |
// @match http://www.google.com/analytics/* | |
// @match https://www.google.com/analytics/* | |
// @copyright 2012+, You | |
// ==/UserScript== | |
(function(doc) { | |
var style = doc.createElement('style'); | |
style.appendChild(doc.createTextNode(".ga-heros img { display: none; }")); | |
doc.head.appendChild(style); | |
}(document)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment