BTC Balance Checker
Get balance of your BTC in realtime
BTC Balance Checker क्या है?
BTC Balance Checker niumi.workshop द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get balance of your BTC in realtime"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BTC Balance Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } |