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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/nongyehezuoshe/cointicker/issues
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}