A simple JavaScript snippet to automatically unfollow accounts on Threads with just a few clicks.
This script automates the process of unfollowing users by:
- Clicking each "Following" button visible on the screen.
- Confirming the "Unfollow" action in the modal dialog.
- Repeating the process every 0.5 seconds (customizable).
Tested on Google Chrome, but should work on most Chromium-based browsers (e.g., Edge, Brave) and possibly Firefox.
- Open Google Chrome and go to Threads.
- Log in to your account.
- Navigate to your profile.
- Click on the "Following" tab to view accounts you follow.
- Scroll down to load as many followed accounts as you'd like to unfollow.
- Right-click anywhere on the page and select "Inspect" to open DevTools.
- Go to the Console tab.
- Paste the script into the console.
- Press Enter to run the script.
- Sit back and watch it unfollow accounts automatically.
To change the interval between each unfollow action, edit this line in the script:
await new Promise((resolve) => setTimeout(resolve, 500)); // ← Change 500 (milliseconds) to your preferred interval- Use at your own risk.
- Threads may update their website, which could break the script.
- This is intended for educational and personal use only.