Skip to content

Instantly share code, notes, and snippets.

@ryankinal
Created May 7, 2014 15:18
Show Gist options
  • Save ryankinal/adeacad4333f989093d0 to your computer and use it in GitHub Desktop.
Save ryankinal/adeacad4333f989093d0 to your computer and use it in GitHub Desktop.
Amazon Cloud Player Random Album
javascript:(function(){
var a = document.querySelectorAll('.album .albumTitle'),
e = a[Math.floor(Math.random() * a.length)];
if (confirm(e.innerText)) {
e.parentNode.querySelector('a.playAlbum').click();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment