- Open news feed preferences on your Facebook menu (browser)
- Click Unfollow
- Scroll down (or click see more) until your full list is loaded
- Run the script in your browser console
const follows = document.querySelectorAll('div[aria-label="Toggle to follow"]')
for (let i = 0; i<follows.length; i++) {
setTimeout(() => follows[i].click(), i * 1500)
}
1. Open news feed preferences on your Facebook menu (browser)
2. Click Unfollow
3. Scroll down (or click see more) until your full list is loaded
4. Run the script in your browser console
`const follows = document.querySelectorAll('div[aria-label="Toggle to follow"]')
for (let i = 0; i<follows.length; i++) {
setTimeout(() => follows[i].click(), i * 1500)
}`
(post is archived)