Skip to content

Instantly share code, notes, and snippets.

@iamandrewluca
Created February 10, 2023 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamandrewluca/dd754ebbe7884ac7b18134f10ac7cf9b to your computer and use it in GitHub Desktop.
Save iamandrewluca/dd754ebbe7884ac7b18134f10ac7cf9b to your computer and use it in GitHub Desktop.
Unbookmark Mastodon bookmarks
let interval = setInterval(() => {
let bookmark = document.querySelector('.bookmark-icon')
if (bookmark) bookmark.click()
else clearInterval(interval)
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment