Skip to content

Instantly share code, notes, and snippets.

@dealingwith
Last active December 25, 2020 14:33
Show Gist options
  • Save dealingwith/ccc9acebf9c1469b8678621ff48bdcc9 to your computer and use it in GitHub Desktop.
Save dealingwith/ccc9acebf9c1469b8678621ff48bdcc9 to your computer and use it in GitHub Desktop.
Bookmarklet for toggling Notion metadata
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 = "";} })();
@dealingwith
Copy link
Author

This will work until they change their markup ๐Ÿ˜›

@dealingwith
Copy link
Author

Lasted a month! ๐Ÿ˜›

@a0000001
Copy link

kool!!~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment