Convert (crypto)currency

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

Co to jest Convert (crypto)currency?

Convert (crypto)currency to rozszerzenie Chrome opracowane przez bhspiers, a jego główną funkcją jest „Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Convert (crypto)currency

Pobierz pliki rozszerzeń Convert (crypto)currency w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Convert (crypto)currency Convert (crypto)currency
ID gpaeckfcfjodafjbnjhlgfplmgdanico
Oficjalny URL https://chromewebstore.google.com/detail/convert-cryptocurrency/gpaeckfcfjodafjbnjhlgfplmgdanico
Opis Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.
Rozmiar pliku 21.7 KB
Liczba instalacji 13
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2022-05-04
Data Publikacji 2020-07-04
Deweloper bhspiers
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
    }
}