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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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