Skip to content

Instantly share code, notes, and snippets.

@julionc
Forked from rublev/remove-gh-stars.js
Last active March 4, 2026 17:11
Show Gist options
  • Select an option

  • Save julionc/e9d21e95fa055301624c11198199284c to your computer and use it in GitHub Desktop.

Select an option

Save julionc/e9d21e95fa055301624c11198199284c to your computer and use it in GitHub Desktop.
remove all github stars 2026
// open console and run cmd+v every time
var i = 0;
var el = document.querySelectorAll('[aria-label="Starred, click to unstar this repository"]');
function myLoop () {
setTimeout(function () {
el[i].click()
i++;
if (i < 30) {
myLoop();
} else {
document.location.reload();
}
}, 50)
}
myLoop();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment