Skip to content

Instantly share code, notes, and snippets.

@pixelbart
Created August 13, 2020 12:35
Show Gist options
  • Save pixelbart/672a99fa2d9a8a968f9c7cdff705c986 to your computer and use it in GitHub Desktop.
Save pixelbart/672a99fa2d9a8a968f9c7cdff705c986 to your computer and use it in GitHub Desktop.
Click on the Like button on all visible posts by Linkedin - just paste it into your browser console
document.querySelectorAll('.feed-shared-social-actions').forEach(function(element) {
if ("true" !== element.children[0].children[0].getAttribute('aria-pressed')) {
element.children[0].children[0].click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment