タグ

ブックマーク / lucahammer.com (1)

  • Unblock all blocked Twitter accounts at once - Luca Hammer

    Update 21.04.2020: The code still works, but only if you set the account language to English.Update 23.11.2019: There are reports that Twitter started to prevent the automated unblocking of accounts. After some 50 to 100 unblocks, the page with blocked accounts get blocked. As a result the script may currently not work.Update 17.11.2019: The old code only worked in Firefox. I updated it to work in

    Unblock all blocked Twitter accounts at once - Luca Hammer
    Ryobot
    Ryobot 2020/04/18
    Twitterでブロックしたアカウントを一括で解除するJSコード “let autoUnblock = setInterval(function() { window.scrollBy(0, window.innerHeight); document.querySelectorAll('[aria-label="Blocked"]').forEach(function(account) { account.click() }); }, 1000);”
  • 1