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
官方網址 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"
            ]
        }
    ]
}