Pandora

By Dallas Brown Last update Apr 9, 2009 — Installed 1,156 times. Daily Installs: 1, 3, 5, 0, 0, 2, 2, 0, 0, 0, 1, 5, 3, 7, 0, 2, 0, 8, 4, 2, 0, 0, 2, 38, 22, 7, 4, 5, 0, 1, 1
// ==UserScript==
// @name        Pandora
// @namespace   http://fluidapp.com
// @description Pandora Growl notifications and condensed design
// @include     *
// @author      Dallas Brown http://www.kdbdallas
// ==/UserScript==

(function ()
{
	if (window.fluid)
	{
		function stylePage()
		{
			document.getElementById("promotional_gallery").style.display = "none !important";
			document.getElementById("promotional_ticker_container").style.display = "none !important";
			document.getElementById("advertisement").style.display = "none !important";
			document.getElementById("radio").style.height = "330px !important";
			document.getElementById("footer").style.display = "none !important";
		}

		function songPlayed(args)
		{
			window.fluid.showGrowlNotification({
				title: "Now Playing", 
				description: args.songName + "\nby " + args.artistName, 
				sticky: false,
				identifier: "Pandora",
				icon: args.artURL
			});
		}

		setTimeout(stylePage, 3000);

		Pandora.setEventHandler("SongPlayed", songPlayed);
    }
})();