Esportal Helper
Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier.
Cos'è Esportal Helper?
Esportal Helper è un'estensione di Chrome sviluppata da callebstrom, e la sua funzione principale è "Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Esportal Helper
Scarica i file di estensione Esportal Helper 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
Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier. This plugin is not associated with or endorsed by, or in any way officially connected with Esportal (https://esportal.com).
Informazioni di Base sull'Estensione
Nome | Esportal Helper |
ID | gifenppiepcjfeaklgeeilihnchdnend |
URL Ufficiale | https://chromewebstore.google.com/detail/esportal-helper/gifenppiepcjfeaklgeeilihnchdnend |
Descrizione | Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier. |
Dimensione del File | 1.26 MB |
Conteggio Installazioni | 167 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2020-08-28 |
Data di Pubblicazione | 2020-08-24 |
Sviluppatore | callebstrom |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Esportal Helper", "version": "0.0.2", "manifest_version": 2, "description": "Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier.", "homepage_url": "https:\/\/www.esportal.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "options_page": "src\/options_custom\/index.html", "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "https:\/\/esportal.com\/*" ], "web_accessible_resources": [ "src\/inject\/main.js", "src\/inject\/app.js", "src\/inject\/user.js", "src\/inject\/statistics.js", "src\/inject\/util.js", "src\/inject\/app\/build\/static\/js\/*.js" ], "content_scripts": [ { "matches": [ "https:\/\/esportal.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/esportal.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |