BTC price bage tracker
The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker
Cos'è BTC price bage tracker?
BTC price bage tracker è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BTC price bage tracker
Scarica i file di estensione BTC price bage tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
What is this for? ₿TC Price Bage is the minimalistic Chrome extension for BTC price monitoring and showing it inside extension bage. - Shows the last BTC-USD rate inside the extension icon - Conversion pop-up - No permissions required - Submits one GET request to the Coinbase API every 5 seconds - Open source, easy to audit and customize - Github: https://github.com/ProHronus/BTC-Tracker Why do you need this? Looking for a simple price tracker, but avoid sophisticated solutions because of a possible security breach? Then this extension for you. The tracker fetches the BTC price from Coinbase API for every 5 seconds, receives JSON result, and refresh the rate on the extension Bage. The code is super easy to audit and customize for other coins.
Informazioni di Base sull'Estensione
Nome | BTC price bage tracker |
ID | konlmcdlofpoegdkbjocdfojejmfkfbo |
URL Ufficiale | https://chromewebstore.google.com/detail/btc-price-bage-tracker/konlmcdlofpoegdkbjocdfojejmfkfbo |
Descrizione | The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker |
Dimensione del File | 21.29 KB |
Conteggio Installazioni | 48 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-04-26 |
Data di Pubblicazione | 2020-04-26 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ProHronus/BTC-Tracker |
URL della Pagina di Aiuto | https://github.com/ProHronus/BTC-Tracker |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BTC price bage tracker", "description": "The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https:\/\/github.com\/ProHronus\/BTC-Tracker", "version": "1.0", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "img\/btc-19.png", "default_popup": "popup.html", "default_title": "BTCtracker" }, "icons": { "16": "img\/btc-16.png", "19": "img\/btc-19.png", "48": "img\/btc-48.png", "128": "img\/btc-128.png" }, "permissions": [] } |