Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

Cos'è Cryptocurrency Ticker?

Cryptocurrency Ticker è un'estensione di Chrome sviluppata da nongyehezuoshe, e la sua funzione principale è "Show the price of specified cryptocurrency in badge or tabs.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Cryptocurrency Ticker

Scarica i file di estensione Cryptocurrency Ticker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
URL Ufficiale https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Descrizione Show the price of specified cryptocurrency in badge or tabs.
Dimensione del File 44.9 KB
Conteggio Installazioni 41
Versione Corrente 3.0.0.0
Ultimo Aggiornamento 2023-05-17
Data di Pubblicazione 2022-09-07
Sviluppatore nongyehezuoshe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nongyehezuoshe/cointicker
URL della Pagina di Aiuto https://github.com/nongyehezuoshe/cointicker/issues
URL della Pagina della Politica sulla Privacy https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Lingue Supportate 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"
            ]
        }
    ]
}