-
-
Save vedant1811/fffd4bb6c027b0219c2dc77e28f35322 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Paste this in linkedin my connections to toggle all "remove connection" menu and auto accept the confirmation dialog | |
Array.from(document.querySelectorAll(".mn-connection-card__dropdown-trigger")).forEach(button=>button.click()) | |
window.setInterval(function(){ | |
document.querySelectorAll('[data-control-name="confirm_removed"]')[0].click() | |
}, 100); |
This file contains hidden or 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
// enable selection in websites | |
(function() { | |
'use strict'; | |
let style = document.createElement('style'); | |
style.innerHTML = '*{ user-select: auto !important; }'; | |
document.body.appendChild(style); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment