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
BTC price bage tracker란 무엇입니까?
BTC price bage tracker은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker"입니다.
확장 프로그램 스크린샷
BTC price bage tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | BTC price bage tracker |
ID | konlmcdlofpoegdkbjocdfojejmfkfbo |
공식 URL | https://chromewebstore.google.com/detail/btc-price-bage-tracker/konlmcdlofpoegdkbjocdfojejmfkfbo |
설명 | The extension for real-time monitoring of the BTC-USD rate from Coinbase API. Open-source: https://github.com/ProHronus/BTC-Tracker |
파일 크기 | 21.29 KB |
설치 횟수 | 48 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-04-26 |
출시 날짜 | 2020-04-26 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ProHronus/BTC-Tracker |
도움말 페이지 URL | https://github.com/ProHronus/BTC-Tracker |
지원되는 언어 | 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": [] } |