jmcgover / unblock-all

A javascript script that unblocks all of a Twitter user's blocked Twitter accounts
MIT License
30 stars 20 forks source link

unblock-all

A javascript script that unblocks all of a Twitter user's blocked Twitter accounts

Overview

Unblocking everyone blocked on Twitter involves navigating to the blocked accounts (https://twitter.com/settings/blocked) page, scrolling down to the bottom until webpage loads the next few accounts, and then clicking the Ublock button one by one. This script attempts to automate the process of scrolling until everyone is loaded, finding the block buttons, and automatically clicking them. The unblock.js script performs each of those tasks by scrolling to the bottom of the page, waiting for it to load via a set timeout, and then continuing to scroll until it observes no difference in scroll height. Once the script can no longer scroll, it finds all of the unblock buttons, by searching for the 'blocked-text' class elements (à la https://gist.github.com/themorgantown/3e3e6a42e17ebcbc766c) and clicking on each of them individually.

Usage

  1. Open Google Chrome
  2. Navigate to https://twitter.com/settings/blocked
    • Sign in, if necessary
  3. Disable or whitelist any adblock or similar blocking extensions (just in case --- I have no idea if this is a problem)
  4. Open the Javascript Console:
    • Windows/Linux: Ctrl + Shift + J
    • OS X: Cmd + Option +J
  5. Paste the contents of unblock.js into the Console window. Press Enter.
  6. Type main(). Press Enter.
    • Alternatively, type unblock(timeoutInMilliseconds, maximumNumberOfScrolls) for a custom timeout in milliseconds and max number of scrolls.
  7. Let it chooch
  8. When the dialog pops up, verify that the number of blocked accounts obtained makes sense
    • Click Ok/Yes to unblock every account
    • Click Cancel/No to do nothing
  9. Refresh the page to verify that accounts have been unblocked

Issues