Skip to content

Instantly share code, notes, and snippets.

@SammyVimes
Created October 17, 2015 15:42
Show Gist options
  • Save SammyVimes/496f013ed6f586f51d4a to your computer and use it in GitHub Desktop.
Save SammyVimes/496f013ed6f586f51d4a to your computer and use it in GitHub Desktop.
I forgot to turn off the music while I was at work, which resulted in 1500 identical scrobbles. So I wrote this.
var id = setInterval(function () {
var val = jQuery(".metadata-display").text();
val++;
val--;
console.log("Left: " + val);
if (val <= 0) {
clearInterval(id);
return;
}
jQuery(".chartlist-delete-button").click();
jQuery(".next a").click();
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment