quick simple test function to get bitcoin price
Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @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