Sync-Video >> Watch videos with friends >> Sugestions
I'd love to read the lyrics of the songs I'm listening. You already have the name (ex. Radiohead - Karma Police), so I created a script that creates the urls for a website: http://www.azlyrics.com/lyrics/radiohead/karmapolice.html Here's the script: function createLink () { var name = document.getElementById('current-video-name').innerHTML.replace(/([\s]|\(.*\))/g, '').toLowerCase().split('-'); var url = 'http://www.azlyrics.com/lyrics/' + name[0] + '/'+ name[1] + '.html'; return url; }; I hope you like it.
Lyrics from Music Videos suggestion
I'd love to read the lyrics of the songs I'm listening.
You already have the name (ex. Radiohead - Karma Police), so I created a script that creates the urls for a website:
http://www.azlyrics.com/lyrics/radiohead/karmapolice.html
Here's the script:
function createLink () {
var name = document.getElementById('current-video-name').innerHTML.replace(/([\s]|\(.*\))/g, '').toLowerCase().split('-');
var url = 'http://www.azlyrics.com/lyrics/' + name[0] + '/'+ name[1] + '.html';
return url;
};
I hope you like it.