Last active
December 25, 2020 14:33
-
-
Save dealingwith/ccc9acebf9c1469b8678621ff48bdcc9 to your computer and use it in GitHub Desktop.
Bookmarklet for toggling Notion metadata
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 metadata = document.querySelector("#notion-app > div > div.notion-cursor-listener > div.notion-frame > div.notion-scroller.vertical.horizontal > div:nth-child(2)"); if (metadata.style.display == "") {metadata.style.display = "none";} else {metadata.style.display = "";} })(); |
Lasted a month! ๐
kool!!~
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will work until they change their markup ๐