Skip to content

Instantly share code, notes, and snippets.

View rosario's full-sized avatar

Rosario rosario

  • London
View GitHub Profile
@brunolemos
brunolemos / linkedin-unfollow-everyone.js
Last active October 4, 2024 15:43
Unfollow everyone on Linkedin
(() => {
let count = 0;
function getAllButtons() {
return document.querySelectorAll('button.is-following') || [];
}
async function unfollowAll() {
const buttons = getAllButtons();