BTC Convert Extension

A simple BTC currency converter

What is BTC Convert Extension?

BTC Convert Extension is a Chrome extension developed by Pieter Bee, and its main feature is "A simple BTC currency converter".

Extension Screenshots

screenshot

Download BTC Convert Extension Extension CRX File

Download BTC Convert Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name BTC Convert Extension BTC Convert Extension
ID akndiebokmpldboapenhfcbaibjebibc
Official URL https://chromewebstore.google.com/detail/btc-convert-extension/akndiebokmpldboapenhfcbaibjebibc
Description A simple BTC currency converter
File Size 45.87 KB
Installation Count 128
Current Version 0.12
Last Updated 2018-01-11
Publish Date 2018-01-11
Rating 5.00/5 Total 4 Ratings
Developer Pieter Bee
Payment Type free
Supported Languages 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
        }
    ]
}