Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

What is Cryptocurrency Ticker?

Cryptocurrency Ticker is a Chrome extension developed by nongyehezuoshe, and its main feature is "Show the price of specified cryptocurrency in badge or tabs.".

Extension Screenshots

screenshot
screenshot

Download Cryptocurrency Ticker Extension CRX File

Download Cryptocurrency Ticker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Cryptocurrency Ticker Cryptocurrency Ticker
ID omchhbokcmpfemeeifmlbighcbnomogk
Official URL https://chromewebstore.google.com/detail/cryptocurrency-ticker/omchhbokcmpfemeeifmlbighcbnomogk
Description Show the price of specified cryptocurrency in badge or tabs.
File Size 44.9 KB
Installation Count 41
Current Version 3.0.0.0
Last Updated 2023-05-17
Publish Date 2022-09-07
Developer nongyehezuoshe
Email [email protected]
Payment Type free
Extension Website https://github.com/nongyehezuoshe/cointicker
Help Page URL https://github.com/nongyehezuoshe/cointicker/issues
Privacy Policy Page URL https://github.com/nongyehezuoshe/privacy/blob/main/README.md
Supported Languages 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"
            ]
        }
    ]
}