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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}