Do you want to unfollow all your connections on LinkedIn and clean you feed? Use (right-click) inspect and this script via console tab πŸ‘Œ

 

Go to ‘manage followers’ > ‘following’, open google chrome developer tools, put into console:

 

var buttons = $(“button”),
interval = setInterval(function(){
var btn = $(‘.is-following’);
console.log(“Clicking:”, btn);
btn.click();
if (buttons.length === 0) {
clearInterval(interval);
}
}, 1000);

 

enjoy.

learn or die. greg