A javascript script that unblocks all of a Twitter user's blocked Twitter accounts
Unblocking everyone blocked on Twitter involves navigating to the blocked accounts (https://twitter.com/settings/blocked) page, finding the block buttons, and automatically clicking them, removing each row, rinse and repeat.
The unblock.js
script performs each of those tasks, also waiting a certain amount of time before going for the next one. This is more efficient than previous methods of loading all the accounts first. It also avoids rate limits.
- Open Google Chrome
- Navigate to https://twitter.com/settings/blocked
- Sign in, if necessary
- Open the Javascript Console:
- Windows/Linux:
Ctrl + Shift + J
- OS X:
Cmd + Option +J
- Paste the contents of
unblock.js
into the Console window. PressEnter
. - Type
main()
. PressEnter
. - Let it chooch
If you see errors in the console log, refresh the page and repeat the above steps.