LinkedIn is even more clickbait than Facebook nowadays. Adios. 💣
Visit https://www.linkedin.com/feed/following/
Scroll down to load all of your contacts
Open developer console, run the following
$('.follow.is-following').trigger('click');
Reverse the unfollows by visiting https://www.linkedin.com/feed/followers/
and run the following in the developer console
$('.follow:not(.is-following)').trigger('click');
Twitter, hejdå friend. 💔
Visit https://twitter.com/following
Scroll down to load all of your follows
Open developer console, run the following
var oldies = $('.ProfileCard .ProfileCard-screennameLink').text().replace(/\s/g, "").split("@").join("\n@").split("\n"); // for backup reasons
var unfollowBtns = $('.ProfileCard .following .follow-button > button.following-text');
unfollowBtns.trigger('click');
Reversing the unfollows by doing
var followBtns = $('.ProfileCard .not-following .follow-button > button.follow-text');
followBtns.trigger('click');
@xeloader this no longer works. (error trigger is not defined).
This will, however: