Esportal Hop-in

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

Esportal Hop-in là gì?

Esportal Hop-in là một tiện ích mở rộng Chrome được phát triển bởi gustavps97, và tính năng chính của nó là "Show an alert when a game is available for hop-in".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Esportal Hop-in

Tải xuống các tệp mở rộng Esportal Hop-in dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Esportal Hop-in Esportal Hop-in
ID ciefpjjlahofahniiajpmpmhljehcndd
URL Chính Thức https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd
Mô tả Show an alert when a game is available for hop-in
Kích Thước Tệp 31.19 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2022-09-12
Ngày Phát Hành 2022-02-27
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển gustavps97
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}