Greasy Fork

Greasy Fork is available in English.

getBTC

quick simple test function to get bitcoin price

当前为 2019-05-13 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/382976/697774/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;
}