Esportal Hop-in

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

Wat is Esportal Hop-in?

Esportal Hop-in is een Chrome-extensie ontwikkeld door gustavps97, en de belangrijkste functie is "Show an alert when a game is available for hop-in".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Esportal Hop-in

Download Esportal Hop-in-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Esportal Hop-in Esportal Hop-in
ID ciefpjjlahofahniiajpmpmhljehcndd
Officiële URL https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd
Beschrijving Show an alert when a game is available for hop-in
Bestandsgrootte 31.19 KB
Aantal Installaties 35
Huidige Versie 0.0.5
Laatst Bijgewerkt 2022-09-12
Publicatiedatum 2022-02-27
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar gustavps97
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    }
}