Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

O que é Cryptocurrency Ticker?

Cryptocurrency Ticker é uma extensão do Chrome desenvolvida por nongyehezuoshe, e sua principal característica é "Show the price of specified cryptocurrency in badge or tabs.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Cryptocurrency Ticker

Baixe arquivos de extensão Cryptocurrency Ticker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
URL Oficial https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Descrição Show the price of specified cryptocurrency in badge or tabs.
Tamanho do Arquivo 44.9 KB
Contagem de Instalações 41
Versão Atual 3.0.0.0
Última Atualização 2023-05-17
Data de Publicação 2022-09-07
Desenvolvedor nongyehezuoshe
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/nongyehezuoshe/cointicker
URL da Página de Ajuda https://github.com/nongyehezuoshe/cointicker/issues
URL da Página de Política de Privacidade https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Idiomas Suportados 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"
            ]
        }
    ]
}