Skip to content

Instantly share code, notes, and snippets.

@mindbreaker
Last active May 7, 2020 10:04
Show Gist options
  • Save mindbreaker/fa61e75c5a8e89a5c00115cd6519aaec to your computer and use it in GitHub Desktop.
Save mindbreaker/fa61e75c5a8e89a5c00115cd6519aaec to your computer and use it in GitHub Desktop.
Show and hide matomo debug console. Bookmarklet here: [Bookmarklet](https://codepen.io/mindbreaker/full/abvqPeX)
var x = document.getElementById("mtmDebugFrame");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment