T!coin Mi

Precio del BTC en el Mi

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name       T!coin Mi
// @version    0.1
// @description  Precio del BTC en el Mi
// @match      http://www.taringa.net/mi
// @copyright  2014+, lvdota
// @namespace https://greasyfork.org/users/5207
// ==/UserScript==

(function() {
    var btc = $('<div class="box"><div class="title clearfix"><h2>Bitcoin Price</h2></div><div id="coindesk-widget" data-size="mpu"></div></div>');
    $('#sidebar').prepend(btc);
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = document.location.protocol + '//widget.coindesk.com/bpiticker/coindesk-widget.min.js?7e776e';

    document.getElementsByTagName('head')[0].appendChild(script);   
})();