T!coin Mi

Precio del BTC en el Mi

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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);   
})();