Growl notification for 1G1G.com
It’s a
Fluid
SSB user script.
// ==UserScript==
// @name 1G1G
// @namespace http://fluidapp.com
// @description Show Growl notification when song changes
// @include *
// @author freewizard gmail.com
// ==/UserScript==
(function () {
if (window.fluid) {
window.lastTitle = "亦歌-自由自在听音乐";
setInterval(function() {
if (document.title == window.lastTitle) return;
window.lastTitle = document.title;
window.fluid.showGrowlNotification({
title: "亦歌",
description: window.lastTitle,
identifier: "www.1G1G.com"
});
}, 1000);
}
})();