Down on Fuzz

By greut Last update May 26, 2008 — Installed 74 times. Daily Installs: 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Down on Fuzz
// @namespace      http://yoan.dosimple.ch/
// @description    replace buy this mp3, by download this mp3
// @include        http://www.fuzz.com/blip/user/*
// ==/UserScript==

function added(action, args) {
    if(args.length) {
        var anchor = document.getElementById("buy"+args[0].id);
        anchor.innerHTML = "download this mp3";
        anchor.href = args[0].url;
    }
}

unsafeWindow.BlipControl.events.add.subscribe(added);