-
-
Save julionc/e9d21e95fa055301624c11198199284c to your computer and use it in GitHub Desktop.
remove all github stars 2026
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
| // 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