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
Apa itu BTC price bage tracker?
BTC price bage tracker adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi BTC price bage tracker
Unduh file ekstensi BTC price bage tracker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | BTC price bage tracker |
ID | konlmcdlofpoegdkbjocdfojejmfkfbo |
URL Resmi | https://chromewebstore.google.com/detail/btc-price-bage-tracker/konlmcdlofpoegdkbjocdfojejmfkfbo |
Deskripsi | The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker |
Ukuran File | 21.29 KB |
Jumlah Instalasi | 48 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2020-04-26 |
Tanggal Publikasi | 2020-04-26 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/ProHronus/BTC-Tracker |
URL Halaman Bantuan | https://github.com/ProHronus/BTC-Tracker |
Bahasa yang Didukung | 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": [] } |