BTC Convert Extension
A simple BTC currency converter
Co to jest BTC Convert Extension?
BTC Convert Extension to rozszerzenie Chrome opracowane przez Pieter Bee, a jego główną funkcją jest „A simple BTC currency converter”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia BTC Convert Extension
Pobierz pliki rozszerzeń BTC Convert Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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! ;)
Podstawowe informacje o rozszerzeniu
Nazwa | BTC Convert Extension |
ID | akndiebokmpldboapenhfcbaibjebibc |
Oficjalny URL | https://chromewebstore.google.com/detail/btc-convert-extension/akndiebokmpldboapenhfcbaibjebibc |
Opis | A simple BTC currency converter |
Rozmiar pliku | 45.87 KB |
Liczba instalacji | 128 |
Aktualna Wersja | 0.12 |
Ostatnia Aktualizacja | 2018-01-11 |
Data Publikacji | 2018-01-11 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Pieter Bee |
Typ Płatności | free |
Obsługiwane Języki | 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 } ] } |