// ==UserScript==
// @name          Del.icio.us MP3 Playtagger
// @version       0.1
// @description   Add del.icio.us playtagger at client side
// @include	  *

// This is a open source script. You are welcome to modify, redistribute, and put on any place for download.
// ==/UserScript=

(function() {

var js = document.createElement("script");
js.language = "javascript";
js.src = "http://del.icio.us/js/playtagger";
document.body.appendChild(js);

})();

