del.icio.us mp3

By al most Last update Nov 22, 2005 — Installed 6,757 times. Daily Installs: 4, 1, 1, 6, 5, 3, 1, 2, 4, 1, 1, 2, 2, 3, 4, 4, 1, 4, 2, 3, 0, 2, 0, 2, 4, 1, 3, 3, 2, 3, 3, 3
// ==UserScript==
// @name          del.icio.us mp3
// @namespace     
// @description   add del.icio.us mp3 player to links
// @include       http://*
// @exclude       http://*.icio.us/*
// ==/UserScript==
    var head,script
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'http://del.icio.us/js/playtagger'
    head.appendChild(script);