Skip to content

Instantly share code, notes, and snippets.

@briankung
Last active January 22, 2018 17:35
Show Gist options
  • Save briankung/e2ab355d9b01123d2697689d38538c61 to your computer and use it in GitHub Desktop.
Save briankung/e2ab355d9b01123d2697689d38538c61 to your computer and use it in GitHub Desktop.
Firefox bookmarklet for toggling element deletion on click - copy into Firefox bookmark to fuck shit up
javascript:void(
(
(document.fuckShitUp === undefined)
&&
(document.addEventListener('click', (e) => {
if (document.fuckShitUp) { e.preventDefault(), e.target.remove() }
}))
), (
document.fuckShitUp = !document.fuckShitUp
)
)
document.fuckShitUp===void 0&&document.addEventListener('click',a=>{document.fuckShitUp&&(a.preventDefault(),a.target.remove())}),document.fuckShitUp=!document.fuckShitUp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment