Skip to content

Instantly share code, notes, and snippets.

View hcientist's full-sized avatar

Michael C. Stewart hcientist

View GitHub Profile
@hcientist
hcientist / infinityshark.js
Created July 9, 2012 18:15
set interval so that grooveshark doesn't ask you to click resume
javascript:(function(){$("[id^=playlistCapital]").hide();$("[id^=capitalAboveFoldHelper]").hide();setInterval(function(){$("#resumePlaybackButton").removeClass("disabled").click();$("#resumePlaybackButtonText").click();$("#resumePlaybackButtonText").parents("button.disabled").removeClass("disabled").removeAttr("disabled").find("span").click();$('button:contains("Yes, I\'m")').click();},2000);})();