quick simple test function to get bitcoin price
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/382976/697849/getBTC.js
function getBTCJSON(){
var price = getURL("https://api.coindesk.com/v1/bpi/currentprice.json");
return price;
}
function getURL(url)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", url, false );
xmlHttp.send( null );
return xmlHttp.responseText;
}
lol