Skip to content

Instantly share code, notes, and snippets.

@jatinkrmalik
Created September 25, 2021 16:30
Show Gist options
  • Save jatinkrmalik/e4e8d1c04ff0d3e75d5254118ca25996 to your computer and use it in GitHub Desktop.
Save jatinkrmalik/e4e8d1c04ff0d3e75d5254118ca25996 to your computer and use it in GitHub Desktop.
Bulk add everyone on "My Network" tab on LinkedIn
/*#### Bulk add everyone on "My Network" tab on LinkedIn ####*/
// ---==== Steps to use ====---
// 1. Go to https://www.linkedin.com/mynetwork/
// 2. Open Dev Console in your browser. Google "how to open dev console in <your-browser-name> for instructions".
// 3. Go to Console tab.
// 4. Paste the oneliner below into the console window and press enter.
// 5. ???
// 6. Profit.
document.querySelectorAll(".discover-entity-type-card__bottom-container footer button").forEach(el => el.click());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment