Convert (crypto)currency

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

O que é Convert (crypto)currency?

Convert (crypto)currency é uma extensão do Chrome desenvolvida por bhspiers, e sua principal característica é "Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Convert (crypto)currency

Baixe arquivos de extensão Convert (crypto)currency no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Convert (crypto)currency Convert (crypto)currency
ID gpaeckfcfjodafjbnjhlgfplmgdanico
URL Oficial https://chromewebstore.google.com/detail/convert-cryptocurrency/gpaeckfcfjodafjbnjhlgfplmgdanico
Descrição Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.
Tamanho do Arquivo 21.7 KB
Contagem de Instalações 13
Versão Atual 1.4
Última Atualização 2022-05-04
Data de Publicação 2020-07-04
Desenvolvedor bhspiers
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
    }
}