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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}