del.icio.us mp3

By al most Last update Nov 22, 2005 — Installed 6,803 times. Daily Installs: 1, 4, 2, 3, 0, 2, 0, 2, 4, 1, 3, 3, 2, 3, 3, 3, 0, 5, 7, 1, 5, 4, 0, 1, 7, 7, 2, 3, 1, 2, 0, 0
// ==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);