T!coin Mi

Precio del BTC en el Mi

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);   
})();