Esportal Hop-in

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

什么是Esportal Hop-in?

Esportal Hop-in是由gustavps97开发的Chrome扩展程序,该扩展的主要功能是“Show an alert when a game is available for hop-in”。

扩展截图

screenshot

下载Esportal Hop-in扩展crx文件

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