Esportal Hop-in
Show an alert when a game is available for hop-in
Was ist Esportal Hop-in?
Esportal Hop-in ist eine Chrome-Erweiterung, die von gustavps97 entwickelt wurde, und ihr Hauptmerkmal ist "Show an alert when a game is available for hop-in".
Erweiterungsscreenshots
Esportal Hop-in-Erweiterungs-CRX-Datei herunterladen
Laden Sie Esportal Hop-in-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 :)
Grundlegende Informationen zur Erweiterung
Name | Esportal Hop-in |
ID | ciefpjjlahofahniiajpmpmhljehcndd |
Offizielle URL | https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd |
Beschreibung | Show an alert when a game is available for hop-in |
Dateigröße | 31.19 KB |
Installationsanzahl | 35 |
Aktuelle Version | 0.0.5 |
Letztes Update | 2022-09-12 |
Veröffentlichungsdatum | 2022-02-27 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | gustavps97 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } } |