Skip to content

Instantly share code, notes, and snippets.

@nderscore
Last active December 18, 2015 07:19
Show Gist options
  • Save nderscore/5746252 to your computer and use it in GitHub Desktop.
Save nderscore/5746252 to your computer and use it in GitHub Desktop.
Bookmarklet. Mutes turntable.fm temporarily until the next song starts.
javascript:(function(){var orig=httpStream.volume;httpStream.setVolume(0);var listener=function(_){if( _.command&&_.command=='newsong'){turntable.removeEventListener('message',listener);httpStream.setVolume(orig);}};turntable.addEventListener('message',listener);})();
/* _nderscore/turntable.fm */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment