BTC Balance Checker
Get balance of your BTC in realtime
O que é BTC Balance Checker?
BTC Balance Checker é uma extensão do Chrome desenvolvida por niumi.workshop, e sua principal característica é "Get balance of your BTC in realtime".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BTC Balance Checker
Baixe arquivos de extensão BTC Balance Checker 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
It's opensource and free for now, check the code : https://bitbucket.org/niumi/btc-balance-checker/src/remove_other_networks/ You have very much money in BTC market and want monitor your balance in real time? BTC Balance Checker will check balance automatically. You have to work hardly and no time to keep an eye on the market? BTC Balance Checker will alert you when BTC price change frequently. More coins will coming soon.
Informações Básicas da Extensão
Nome | |
ID | fegocfnkplaalojebcdadenpnmjmfbga |
URL Oficial | https://chrome.google.com/webstore/detail/btc-balance-checker/fegocfnkplaalojebcdadenpnmjmfbga |
Descrição | Get balance of your BTC in realtime |
Tamanho do Arquivo | 120 KB |
Contagem de Instalações | 80 |
Versão Atual | 1.0 |
Última Atualização | 2019-06-28 |
Data de Publicação | 2019-06-28 |
Desenvolvedor | niumi.workshop |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BTC Balance Checker", "short_name": "BTC Blance Checker", "description": "Get balance of your BTC in realtime", "version": "1.0", "background": { "scripts": [ "background.js", "jquery-3.3.1.min.js", "bignumber.min.js", "numeral.min.js" ], "persistent": true }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "https:\/\/*.blockchain.info\/", "https:\/\/api.coindesk.com\/", "notifications", "storage", "tabs", "alarms" ] } |