Last active
September 3, 2019 03:22
-
-
Save abdus/748ef511bb75d48c4503cadaa4ad0826 to your computer and use it in GitHub Desktop.
Simple script for sending mass invite on linkedin #automation #auto-invite
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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
// script for sending auto invite to people in linkedin | |
// ++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
// | |
// Simple script for sending mass invite on linkedin | |
// NOTE: This will send invite to the profiles available in your 'RECOMANDATION' tab | |
// | |
// | |
// | |
// HOW TO | |
// ====================================================== | |
// | |
// open https://www.linkedin.com/mynetwork/ in browser | |
// Open web console -> move to console tab -> run following code in your web console | |
// | |
// ====================================================== | |
// | |
// You have to run this everytime you refresh page. | |
// You can take the following code and build a chrome/firefox invite automation extension if you want | |
// Good Luck!! | |
// | |
// I am NOT responsible at all if something bad happens to your profile. | |
if (window.location.href === 'https://www.linkedin.com/mynetwork/') { | |
window.a = document.querySelectorAll('.js-mn-discovery-person-card__action-btn') | |
for(let i =0; i<a.length; i++) { | |
a[i].click() | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment