Convert (crypto)currency

Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.

What is Convert (crypto)currency?

Convert (crypto)currency is a Chrome extension developed by bhspiers, and its main feature is "Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Convert (crypto)currency Extension CRX File

Download Convert (crypto)currency 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

                        Highlight a value (or just right-click it), then select the crypto/fiat currencies to convert between.
Result shown in a simple tooltip.
Enter your own list of fiat and/or crypto currency symbols in the settings.
You can also convert fiat to fiat or crypto to crypto.
Works on any website!                    

Extension Basic Information

Name Convert (crypto)currency Convert (crypto)currency
ID gpaeckfcfjodafjbnjhlgfplmgdanico
Official URL https://chromewebstore.google.com/detail/convert-cryptocurrency/gpaeckfcfjodafjbnjhlgfplmgdanico
Description Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.
File Size 21.7 KB
Installation Count 13
Current Version 1.4
Last Updated 2022-05-04
Publish Date 2020-07-04
Developer bhspiers
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Convert (crypto)currency",
    "description": "Context menu option to convert selected crypto\/fiat value - displays the result in a simple tooltip.",
    "version": "1.4",
    "icons": {
        "128": "exchange.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "api.js",
                "crypto-context.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.coinbase.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}