Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

什么是Cryptocurrency Ticker?

Cryptocurrency Ticker是由nongyehezuoshe开发的Chrome扩展程序,该扩展的主要功能是“Show the price of specified cryptocurrency in badge or tabs.”。

扩展截图

screenshot
screenshot

下载Cryptocurrency Ticker扩展crx文件

下载Cryptocurrency Ticker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
官方URL https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
简介 Show the price of specified cryptocurrency in badge or tabs.
文件大小 44.9 KB
安装次数 41
当前版本 3.0.0.0
更新时间 2023-05-17
上架时间 2022-09-07
开发者 nongyehezuoshe
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/nongyehezuoshe/cointicker
帮助页面URL https://github.com/nongyehezuoshe/cointicker/issues
隐私政策页面URL https://github.com/nongyehezuoshe/privacy/blob/main/README.md
支持的语言 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"
            ]
        }
    ]
}