Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

Qu'est-ce que Cryptocurrency Ticker ?

Cryptocurrency Ticker est une extension Chrome développée par nongyehezuoshe, et sa fonction principale est "Show the price of specified cryptocurrency in badge or tabs.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Cryptocurrency Ticker

Téléchargez les fichiers d'extension Cryptocurrency Ticker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
URL Officiel https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Description Show the price of specified cryptocurrency in badge or tabs.
Taille du Fichier 44.9 KB
Nombre d'Installations 41
Version Actuelle 3.0.0.0
Dernière Mise à Jour 2023-05-17
Date de Publication 2022-09-07
Développeur nongyehezuoshe
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nongyehezuoshe/cointicker
URL de la Page d'Aide https://github.com/nongyehezuoshe/cointicker/issues
URL de la Page de Politique de Confidentialité https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Langues Prises en Charge 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"
            ]
        }
    ]
}