BTC Balance Checker
Get balance of your BTC in realtime
Qu'est-ce que BTC Balance Checker ?
BTC Balance Checker est une extension Chrome développée par niumi.workshop, et sa fonction principale est "Get balance of your BTC in realtime".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension BTC Balance Checker
Téléchargez les fichiers d'extension BTC Balance Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | fegocfnkplaalojebcdadenpnmjmfbga |
URL Officiel | https://chrome.google.com/webstore/detail/btc-balance-checker/fegocfnkplaalojebcdadenpnmjmfbga |
Description | Get balance of your BTC in realtime |
Taille du Fichier | 120 KB |
Nombre d'Installations | 80 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2019-06-28 |
Date de Publication | 2019-06-28 |
Développeur | niumi.workshop |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |