getBTC

quick simple test function to get bitcoin price

目前為 2019-05-13 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/382976/697775/getBTC.js

function getBTCJSON(){
    var price = getURI("https://api.coindesk.com/v1/bpi/currentprice.json");
    return price;
}

function getURI(url)
{
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", url, false );
    xmlHttp.send( null );
    return xmlHttp.responseText;
}

o