Skip to content

Instantly share code, notes, and snippets.

@TripCreighton
Last active July 8, 2021 17:57
Show Gist options
  • Save TripCreighton/304aede77093f980f10df0e4baf7fe2c to your computer and use it in GitHub Desktop.
Save TripCreighton/304aede77093f980f10df0e4baf7fe2c to your computer and use it in GitHub Desktop.
Auto endorse other ppls skills on a popular job site
// hint: ConnectedInside
let skillButtons = document.getElementsByClassName("pv-skill-entity__featured-endorse-button-shared")
for (let i = 0; i < skillButtons.length; i++) {
if (skillButtons[i].getAttribute("aria-pressed") === "false") {
skillButtons[i].click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment