Forked from takanakahiko/nowplaing_from_gpm.js
Last active
November 27, 2015 18:19
-
-
Save lindwurm/7aaab7bf773019cc130d to your computer and use it in GitHub Desktop.
Web版Google Play MusicでもいつものフォーマットでNowPlayingするブックマークレット
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
var te=document.getElementById("player-song-title"); | |
var t=te.innerHTML; | |
t=t.replace(/& /g,"&"); | |
var ae=document.getElementById("player-artist"); | |
var a=ae.innerHTML; | |
a=a.replace(/& /g,"&"); | |
var ale=document.getElementsByClassName("player-album"); | |
var al=ale[0].innerHTML; | |
al=al.replace(/& /g,"&"); | |
var tweet=encodeURIComponent('『'+t+'』'+'by《'+a+'》'+'from【'+al+'】'+' #webPlay'+' #nowplaying'); | |
void(window.open('https://twitter.com/intent/tweet?text='+tweet)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment