Skip to content

Instantly share code, notes, and snippets.

@dominykas
Created August 4, 2014 11:07
Show Gist options
  • Save dominykas/f1856e8ef9620ccd31b2 to your computer and use it in GitHub Desktop.
Save dominykas/f1856e8ef9620ccd31b2 to your computer and use it in GitHub Desktop.
Hide creeps on Analytics login
  • Install Tampermonkey
  • Create new user script and paste the contents of userscript.js there
// ==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