Created
September 25, 2021 16:30
-
-
Save jatinkrmalik/e4e8d1c04ff0d3e75d5254118ca25996 to your computer and use it in GitHub Desktop.
Bulk add everyone on "My Network" tab on LinkedIn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*#### 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