Skip to content

Instantly share code, notes, and snippets.

View rublev's full-sized avatar
😀

rublev

😀
View GitHub Profile
@rublev
rublev / remove-gh-stars.js
Created April 7, 2017 22:36
remove all github stars
// open console and run cmd+v every time
var i = 0;
var el = document.querySelectorAll('[aria-label="Unstar this repository"]');
function myLoop () {
setTimeout(function () {
el[i].click()
i++;
if (i < 30) {