Created
August 10, 2017 08:09
-
-
Save toruta39/d9bf87529018ac0965c3e5d11494fa7a to your computer and use it in GitHub Desktop.
HideMixpanelMenu
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 HideMixpanelMenu | |
// @namespace HMPM | |
// @version 0.1 | |
// @description Hide menu feature in Mixpanel for dashboard displaying | |
// @author Joshua Zhang | |
// @include https://mixpanel.com/report/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.querySelector('#menu').style.display = 'none'; | |
document.querySelector('#blue_header').style.display = 'none'; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment