- 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)
}
(post is archived)