Skip to content

Instantly share code, notes, and snippets.

@frankmeeuwsen
frankmeeuwsen / linkedin-unfollow-everyone.js
Created September 8, 2020 19:40 — forked from brunolemos/linkedin-unfollow-everyone.js
Unfollow everyone on Linkedin
(() => {
let count = 0;
function getAllButtons() {
return document.querySelectorAll('button.is-following') || [];
}
async function unfollowAll() {
const buttons = getAllButtons();