Skip to content

Instantly share code, notes, and snippets.

@toruta39
Created August 10, 2017 08:09
Show Gist options
  • Save toruta39/d9bf87529018ac0965c3e5d11494fa7a to your computer and use it in GitHub Desktop.
Save toruta39/d9bf87529018ac0965c3e5d11494fa7a to your computer and use it in GitHub Desktop.
HideMixpanelMenu
// ==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