Skip to content

Instantly share code, notes, and snippets.

@abdus
Last active September 3, 2019 03:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdus/748ef511bb75d48c4503cadaa4ad0826 to your computer and use it in GitHub Desktop.
Save abdus/748ef511bb75d48c4503cadaa4ad0826 to your computer and use it in GitHub Desktop.
Simple script for sending mass invite on linkedin #automation #auto-invite
// ++++++++++++++++++++++++++++++++++++++++++++++++++++
// 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