BTC Balance Checker
Get balance of your BTC in realtime
BTC Balance Checkerとは何ですか?
BTC Balance Checkerはniumi.workshopによって開発されたChromeの拡張機能で、その主な機能は「Get balance of your BTC in realtime」です。
拡張機能のスクリーンショット
BTC Balance Checker拡張機能のCRXファイルをダウンロード
BTC Balance Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | fegocfnkplaalojebcdadenpnmjmfbga |
公式URL | https://chrome.google.com/webstore/detail/btc-balance-checker/fegocfnkplaalojebcdadenpnmjmfbga |
説明 | Get balance of your BTC in realtime |
ファイルサイズ | 120 KB |
インストール数 | 80 |
現在のバージョン | 1.0 |
最終更新日 | 2019-06-28 |
公開日 | 2019-06-28 |
開発者 | niumi.workshop |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" ] } |