KISSRadio 網路音樂台

// ==UserScript==
// @name    KISSRadio 網路音樂台
// @description    顯示歌名於body、title
// @run-at document-end
// @author    NKid
// @version    2011-08-02
// @include    http://www.kiss.com.tw/marquee.php?id=308*
// ==/UserScript==
GM_addStyle('body {background-color:#262629} h1 {text-align:center; margin-top:10%; font-size:5em; color:white;}');
var songName=document.querySelector('td span').innerHTML.replace(/(正在播放|即將播放)<span style=\"font-size:3pt;\"> :<\/span>/,'');
var tb=document.getElementsByTagName('table')[0];
tb.parentNode.removeChild(tb);
document.getElementsByTagName('body')[0].innerHTML='<h1>'+ songName+'</h1>';
//document.title=songName;
setTimeout(function(){location.assign('http://www.kiss.com.tw/marquee.php?id=308' + '&t=' + new Date().getTime() );},30*1000);
function scrlsts() {
    songName = songName.substring(1, songName.length) + songName.substring(0, 1);
    document.title = songName;
    setTimeout(scrlsts, 300);
}
scrlsts();

htmlmarquee - Title Marquee