Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

Co to jest Cryptocurrency Ticker?

Cryptocurrency Ticker to rozszerzenie Chrome opracowane przez nongyehezuoshe, a jego główną funkcją jest „Show the price of specified cryptocurrency in badge or tabs.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Cryptocurrency Ticker

Pobierz pliki rozszerzeń Cryptocurrency Ticker 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

                        Show the price of specified cryptocurrency in badge or tabs. You can customize which trading pairs are displayed from the options page. such as BTC-USDT, ETH-USDT, and so on.                    

Podstawowe informacje o rozszerzeniu

Nazwa Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
Oficjalny URL https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Opis Show the price of specified cryptocurrency in badge or tabs.
Rozmiar pliku 44.9 KB
Liczba instalacji 41
Aktualna Wersja 3.0.0.0
Ostatnia Aktualizacja 2023-05-17
Data Publikacji 2022-09-07
Deweloper nongyehezuoshe
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nongyehezuoshe/cointicker
Adres URL Strony Pomocy https://github.com/nongyehezuoshe/cointicker/issues
Adres URL Strony Polityki Prywatności https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Obsługiwane Języki en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "version": "3.0.0.0",
    "description": "__MSG_ext_des__",
    "default_locale": "en",
    "action": {
        "default_icon": {
            "16": "icons\/icon.png",
            "24": "icons\/icon.png",
            "32": "icons\/icon.png"
        },
        "default_title": "__MSG_ext_name__",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "128": "icons\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "html\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*",
                "icons\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/event.js"
            ],
            "css": [
                "css\/event.css"
            ]
        }
    ]
}