Last active
November 18, 2023 06:57
-
-
Save VAIBHAV7500/95e50edc709aa08f3a6c1ff9cf0a58e5 to your computer and use it in GitHub Desktop.
Accept all Connection Request on Linkedin - TamperMonkey Script
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
// ==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... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To Activate reload the page when you open the Networks tab