Skip to content

Instantly share code, notes, and snippets.

@julionc
julionc / remove-gh-stars.js
Last active March 4, 2026 17:11 — forked from rublev/remove-gh-stars.js
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) {