Skip to content

Instantly share code, notes, and snippets.

@rs4231199
Last active February 15, 2022 14:20
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 rs4231199/b71a3c5037a375ac8190f3090a295dad to your computer and use it in GitHub Desktop.
Save rs4231199/b71a3c5037a375ac8190f3090a295dad to your computer and use it in GitHub Desktop.
fake tweet generator
  1. Go to twitter.com

  2. Run in console

document.designMode = 'on'

OR

document.body.setAttribute('contenteditable', true)
document.body.setAttribute('spellcheck', false)
window.addEventListener("click", (e) => {
  e.stopPropagation();
  e.stopImmediatePropagation();
  e.preventDefault();
}, true)
  1. Edit tweets inline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment