Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

¿Qué es Cryptocurrency Ticker?

Cryptocurrency Ticker es una extensión de Chrome desarrollada por nongyehezuoshe, y su función principal es "Show the price of specified cryptocurrency in badge or tabs.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Cryptocurrency Ticker

Descarga archivos de extensión Cryptocurrency Ticker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
URL Oficial https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Descripción Show the price of specified cryptocurrency in badge or tabs.
Tamaño del Archivo 44.9 KB
Cantidad de Instalaciones 41
Versión Actual 3.0.0.0
Última Actualización 2023-05-17
Fecha de Publicación 2022-09-07
Desarrollador nongyehezuoshe
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/nongyehezuoshe/cointicker
URL de la Página de Ayuda https://github.com/nongyehezuoshe/cointicker/issues
URL de la Página de Política de Privacidad https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Idiomas Soportados 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"
            ]
        }
    ]
}