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
O que é BTC price bage tracker?
BTC price bage tracker é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BTC price bage tracker
Baixe arquivos de extensão BTC price bage tracker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | BTC price bage tracker |
ID | konlmcdlofpoegdkbjocdfojejmfkfbo |
URL Oficial | https://chromewebstore.google.com/detail/btc-price-bage-tracker/konlmcdlofpoegdkbjocdfojejmfkfbo |
Descrição | The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker |
Tamanho do Arquivo | 21.29 KB |
Contagem de Instalações | 48 |
Versão Atual | 1.0 |
Última Atualização | 2020-04-26 |
Data de Publicação | 2020-04-26 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ProHronus/BTC-Tracker |
URL da Página de Ajuda | https://github.com/ProHronus/BTC-Tracker |
Idiomas Suportados | 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": [] } |