Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

Was ist Cryptocurrency Ticker?

Cryptocurrency Ticker ist eine Chrome-Erweiterung, die von nongyehezuoshe entwickelt wurde, und ihr Hauptmerkmal ist "Show the price of specified cryptocurrency in badge or tabs.".

Erweiterungsscreenshots

screenshot
screenshot

Cryptocurrency Ticker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cryptocurrency Ticker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
Offizielle URL https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Beschreibung Show the price of specified cryptocurrency in badge or tabs.
Dateigröße 44.9 KB
Installationsanzahl 41
Aktuelle Version 3.0.0.0
Letztes Update 2023-05-17
Veröffentlichungsdatum 2022-09-07
Entwickler nongyehezuoshe
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/nongyehezuoshe/cointicker
Hilfeseite URL https://github.com/nongyehezuoshe/cointicker/issues
URL der Datenschutzrichtlinien-Seite https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Unterstützte Sprachen 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"
            ]
        }
    ]
}