Esportal Hop-in
Show an alert when a game is available for hop-in
Hvad er Esportal Hop-in?
Esportal Hop-in er en Chrome-udvidelse udviklet af gustavps97, og dens hovedfunktion er "Show an alert when a game is available for hop-in".
Udvidelsesskærmbilleder
Download Esportal Hop-in-udvidelses-CRX-fil
Download Esportal Hop-in-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 :)
Grundlæggende oplysninger om udvidelsen
Navn | Esportal Hop-in |
ID | ciefpjjlahofahniiajpmpmhljehcndd |
Officiel URL | https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd |
Beskrivelse | Show an alert when a game is available for hop-in |
Filstørrelse | 31.19 KB |
Antal Installationer | 35 |
Nuværende Version | 0.0.5 |
Senest Opdateret | 2022-09-12 |
Udgivelsesdato | 2022-02-27 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | gustavps97 |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } } |