BTC Convert Extension
A simple BTC currency converter
BTC Convert Extension란 무엇입니까?
BTC Convert Extension은(는) Pieter Bee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple BTC currency converter"입니다.
확장 프로그램 스크린샷
BTC Convert Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a simple right mouse click menu item that converts dollars/euros to BTC and vice versa. The calculation is made via the blockchain.info API (https://blockchain.info/tobtc) It can also convert EUR/USD in an input field to BTC and vice versa. DISCLAIMER: I made this extension as a hobby. So I'm not responsible for any calculation errors! Using this converter is at your own risk... Use it wise and always double check! ;)
확장 프로그램 기본 정보
이름 | BTC Convert Extension |
ID | akndiebokmpldboapenhfcbaibjebibc |
공식 URL | https://chromewebstore.google.com/detail/btc-convert-extension/akndiebokmpldboapenhfcbaibjebibc |
설명 | A simple BTC currency converter |
파일 크기 | 45.87 KB |
설치 횟수 | 128 |
현재 버전 | 0.12 |
최근 업데이트 | 2018-01-11 |
출시 날짜 | 2018-01-11 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Pieter Bee |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BTC Convert Extension", "description": "A simple BTC currency converter", "version": "0.12", "browser_action": { "default_icon": "ext-icon_128.png" }, "permissions": [ "contextMenus" ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "ext-icon_16.png", "48": "ext-icon_48.png", "128": "ext-icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "all_frames": false } ] } |