Esportal Hop-in
Show an alert when a game is available for hop-in
Cos'è Esportal Hop-in?
Esportal Hop-in è un'estensione di Chrome sviluppata da gustavps97, e la sua funzione principale è "Show an alert when a game is available for hop-in".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Esportal Hop-in
Scarica i file di estensione Esportal Hop-in in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 :)
Informazioni di Base sull'Estensione
Nome | Esportal Hop-in |
ID | ciefpjjlahofahniiajpmpmhljehcndd |
URL Ufficiale | https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd |
Descrizione | Show an alert when a game is available for hop-in |
Dimensione del File | 31.19 KB |
Conteggio Installazioni | 35 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2022-09-12 |
Data di Pubblicazione | 2022-02-27 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | gustavps97 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } |