« gholmes's Album | Main | bonojerry's Album »

GM script: Del.icio.us MP3 Playtagger

Tags: Greasemonkey

Del.icio.us 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.

TrackBack

Listed below are links to weblogs that reference GM script: Del.icio.us MP3 Playtagger:

» Del.icio.us PlayTagger 的應用 - Bookmarklet from 薄荷
上一篇提到用 Greasemonkey script 把 del.icio.us 的 playtagger 包起來, 可以將任何網站中的 mp3 link 前放上一個 tiny playback button. Del.icio.us 的 timb 也來留言給了一段異曲同工的 bookmarklet , 可以達成同樣的... [Read More]

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)})()

Post a comment