Created
May 15, 2020 13:12
-
-
Save runxel/065d0534561d3c76461197e6b3e293de to your computer and use it in GitHub Desktop.
Clean your Bing Map for exploring
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
javascript: (function () { var ids = ["MicrosoftNav", "id_h", "b_footer"]; var cls = ["taskBar", "bm_LocateMeControl", "bm_feedbackBetaButton"]; var hidden = (window.getComputedStyle(document.getElementById(ids[0]))).getPropertyValue("display"); if (hidden !== "none") { var disp = "none"; } else { var disp = ""; }; for (var i = 0; i < ids.length; i++) { document.getElementById(ids[i]).style.display = disp; document.getElementsByClassName(cls[i])[0].style.display = disp; }; })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Similar bookmarklet to this for Google Maps.