BTC Convert Extension

A simple BTC currency converter

Qu'est-ce que BTC Convert Extension ?

BTC Convert Extension est une extension Chrome développée par Pieter Bee, et sa fonction principale est "A simple BTC currency converter".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension BTC Convert Extension

Téléchargez les fichiers d'extension BTC Convert Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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! ;)                    

Informations de Base sur l'Extension

Nom BTC Convert Extension BTC Convert Extension
ID akndiebokmpldboapenhfcbaibjebibc
URL Officiel https://chromewebstore.google.com/detail/btc-convert-extension/akndiebokmpldboapenhfcbaibjebibc
Description A simple BTC currency converter
Taille du Fichier 45.87 KB
Nombre d'Installations 128
Version Actuelle 0.12
Dernière Mise à Jour 2018-01-11
Date de Publication 2018-01-11
Évaluation 5.00/5 Total 4 Évaluations
Développeur Pieter Bee
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}