Skip to content

Instantly share code, notes, and snippets.

@LuisMayo
Created May 28, 2021 15:05
Show Gist options
  • Save LuisMayo/72155c30c163f3b745fc5b640eff4cc8 to your computer and use it in GitHub Desktop.
Save LuisMayo/72155c30c163f3b745fc5b640eff4cc8 to your computer and use it in GitHub Desktop.
Unblockk al people from twitter
function unblock() {
setInterval(() => {
// It may not properly work if Twitter updates the webpap since it seems ofuscated
let foo = document.querySelectorAll('.r-1dgebii')
foo.forEach(btn => btn.click());
console.log
foo[foo.length - 1].scrollIntoView()
}, 700);
}
unblock()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment