GM script: Del.icio.us MP3 Playtagger
Del.icio.us announced a cool script, named playtagger, to add a tiny mp3 playback button and a tag button. The script will alter the onload() event of the HTML body document and insert the playable link to any URL point to mp3 files. This is just like what Greasemonkey does. So I simply wrap the playtagger script in a Greasemonkey user script to load it for each sites, and it works just great.
Download: mp3.playtagger.user.js
There are more screenshots here.


Comments
nice, it can also work as a bookmarklet:
javascript:(function(){var o=document.createElement("script"); o.type="text/javascript"; o.src="http://del.icio.us/js/playtagger"; o.onload=function(){Delicious.Mp3.go()}; document.body.appendChild(o)})()
Posted by: timb | November 25, 2005 12:04 AM