/*
* @title Google Music nowplaying
* @description Bookmarklet for tweet nowplaying song at Google Music.
* @include http://*
* @license MIT License
* @require
*/
javascript:var%20te=document.getElementById("playerSongTitle");var%20tc=te.childNodes;var%20t=tc[0].innerHTML;var%20ae=document.getElementById("playerArtist");var%20ac=ae.childNodes;var%20a=ac[0].innerHTML;var%20tweet=encodeURIComponent(t)+'%20%2f%20'+encodeURIComponent(a)+'%20%2f%2aGoogle%20music%20nowplaying%2a%2f';void(window.open('https://twitter.com/intent/tweet?text='+tweet+'&hashtags=NowPlaying'));