getBTC

quick simple test function to get bitcoin price

اعتبارا من 13-05-2019. شاهد أحدث إصدار.

لا ينبغي أن لا يتم تثبيت هذا السكريت مباشرة. هو مكتبة لسكبتات لتشمل مع التوجيه الفوقية // @require https://update.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