Cryptocurrency Ticker

Show the price of specified cryptocurrency in badge or tabs.

Cryptocurrency Tickerคืออะไร?

Cryptocurrency Ticker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nongyehezuoshe และคุณลักษณะหลักของมันคือ "Show the price of specified cryptocurrency in badge or tabs."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cryptocurrency Ticker

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}