Skip to content

Instantly share code, notes, and snippets.

@VAIBHAV7500
Last active November 18, 2023 06:57
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 VAIBHAV7500/95e50edc709aa08f3a6c1ff9cf0a58e5 to your computer and use it in GitHub Desktop.
Save VAIBHAV7500/95e50edc709aa08f3a6c1ff9cf0a58e5 to your computer and use it in GitHub Desktop.
Accept all Connection Request on Linkedin - TamperMonkey Script
// ==UserScript==
// @name Accept Everyone on Linkedin
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Script to accept all the follow requests
// @author You
// @match https://www.linkedin.com/mynetwork/
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com
// @grant none
// ==/UserScript==
//To Activate the Script reload the Connection Request Page
(function() {
'use strict';
setInterval(() => {
const el = document.getElementsByClassName("invitation-card__action-btn")[1];
if(el != null){
el.click();
}
}, 1500);
// Your code here...
})();
@VAIBHAV7500
Copy link
Author

To Activate reload the page when you open the Networks tab

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment