Convert (crypto)currency

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

Qu'est-ce que Convert (crypto)currency ?

Convert (crypto)currency est une extension Chrome développée par bhspiers, et sa fonction principale est "Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Convert (crypto)currency

Téléchargez les fichiers d'extension Convert (crypto)currency 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

                        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!                    

Informations de Base sur l'Extension

Nom Convert (crypto)currency Convert (crypto)currency
ID gpaeckfcfjodafjbnjhlgfplmgdanico
URL Officiel 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.
Taille du Fichier 21.7 KB
Nombre d'Installations 13
Version Actuelle 1.4
Dernière Mise à Jour 2022-05-04
Date de Publication 2020-07-04
Développeur bhspiers
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}