Skip to content

Instantly share code, notes, and snippets.

@lozhn
Last active April 5, 2017 16:08
Show Gist options
  • Save lozhn/f0883ace230083e1262f6e9f3d625428 to your computer and use it in GitHub Desktop.
Save lozhn/f0883ace230083e1262f6e9f3d625428 to your computer and use it in GitHub Desktop.
Run in Chrome JS Console to instantneously click all "Unstar" buttons on your Stars page at https://github.com/{username}?tab=stars (then refresh page due to pagination on run again)
[...document.getElementsByClassName('starred')].map(e => e.children[1].click())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment