LinkedIn – How to Unfollow All Contacts at Once

linkedin

Is there any way to unfollow all my contacts on LinkedIn at once (without removing them)?

Best Answer

Go the page that shows who you are following (LinkedIn) and run this code in the browser's developer console. It will go and click the unfollow button for you.

It also scrolls down the page so that more profiles load.

var buttons = $("button"),
 interval = setInterval(function(){
 var btn = $('.is-following');
 console.log("Clicking:", btn);
 btn.click();
 if (buttons.length === 0) {
    clearInterval(interval);
 }
 window.scrollTo(0,document.body.scrollHeight);
}, 1000);