quick simple test function to get bitcoin price
Dette script bør ikke installeres direkte. Det er et bibliotek, som andre scripts kan inkludere med metadirektivet // @require https://update.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