This file contains 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="Unstar this repository"]'); | |
function myLoop () { | |
setTimeout(function () { | |
el[i].click() | |
i++; | |
if (i < 30) { |