BTC Convert Extension
A simple BTC currency converter
Wat is BTC Convert Extension?
BTC Convert Extension is een Chrome-extensie ontwikkeld door Pieter Bee, en de belangrijkste functie is "A simple BTC currency converter".
Extensie Screenshots
Download het CRX-bestand van de extensie BTC Convert Extension
Download BTC Convert Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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! ;) Basisinformatie over de Extensie
| Naam | |
| ID | akndiebokmpldboapenhfcbaibjebibc |
| Officiële URL | https://chromewebstore.google.com/detail/btc-convert-extension/akndiebokmpldboapenhfcbaibjebibc |
| Beschrijving | A simple BTC currency converter |
| Bestandsgrootte | 45.87 KB |
| Aantal Installaties | 128 |
| Huidige Versie | 0.12 |
| Laatst Bijgewerkt | 2018-01-11 |
| Publicatiedatum | 2018-01-11 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Pieter Bee |
| Betalingswijze | free |
| Ondersteunde Talen | 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
}
]
} | |