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ファイルをダウンロード
BTC Convert Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 } ] } |