Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

Wat is Cryptocurrency Ticker?

Cryptocurrency Ticker is een Chrome-extensie ontwikkeld door nongyehezuoshe, en de belangrijkste functie is "Show the price of specified cryptocurrency in badge or tabs.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Cryptocurrency Ticker

Download Cryptocurrency Ticker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
Officiële URL https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Beschrijving Show the price of specified cryptocurrency in badge or tabs.
Bestandsgrootte 44.9 KB
Aantal Installaties 41
Huidige Versie 3.0.0.0
Laatst Bijgewerkt 2023-05-17
Publicatiedatum 2022-09-07
Ontwikkelaar nongyehezuoshe
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/nongyehezuoshe/cointicker
Help Pagina-URL https://github.com/nongyehezuoshe/cointicker/issues
URL van de Privacybeleid Pagina https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Ondersteunde Talen 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"
            ]
        }
    ]
}