Esportal Hop-in

Show an alert when a game is available for hop-in

ما هو Esportal Hop-in؟

Esportal Hop-in هو إضافة Chrome تم تطويرها بواسطة gustavps97، والميزة الرئيسية لها هي "Show an alert when a game is available for hop-in".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Esportal Hop-in

قم بتنزيل ملفات الامتداد Esportal Hop-in بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Easily join on-going esportal ranked games with custom alerts

Do you want to contribute to this extension? The source code is available at GitHub:
https://github.com/GustavPS/esportal-hop-in

Any contributions are welcome :)                    

معلومات أساسية عن التمديد

الاسم Esportal Hop-in Esportal Hop-in
ID ciefpjjlahofahniiajpmpmhljehcndd
عنوان URL الرسمي https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd
الوصف Show an alert when a game is available for hop-in
حجم الملف 31.19 KB
عدد التثبيتات 35
النسخة الحالية 0.0.5
آخر تحديث 2022-09-12
تاريخ النشر 2022-02-27
تقييم 5.00/5 مجموع تقييمات 4
المطور gustavps97
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة sv
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Esportal Hop-in",
    "description": "Show an alert when a game is available for hop-in",
    "version": "0.0.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/esportal.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon_16.png",
            "48": "\/images\/icon_48.png",
            "128": "\/images\/icon_128.png"
        }
    }
}