ESEA Ranks
Shows player ranks & MMR on match pages
Cos'è ESEA Ranks?
ESEA Ranks è un'estensione di Chrome sviluppata da hleV, e la sua funzione principale è "Shows player ranks & MMR on match pages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ESEA Ranks
Scarica i file di estensione ESEA Ranks 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
This extension adds Rank and MMR columns to the stats table in ESEA match pages. If you find this useful, you are welcome to donate via PayPal: https://paypal.me/hleVqq Enjoy :)
Informazioni di Base sull'Estensione
Nome | ESEA Ranks |
ID | aojbflicmonbdpdafocjbmfgogcflnnl |
URL Ufficiale | https://chromewebstore.google.com/detail/esea-ranks/aojbflicmonbdpdafocjbmfgogcflnnl |
Descrizione | Shows player ranks & MMR on match pages |
Dimensione del File | 8.63 KB |
Conteggio Installazioni | 101 |
Versione Corrente | 1.6 |
Ultimo Aggiornamento | 2020-08-16 |
Data di Pubblicazione | 2020-08-15 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | hleV |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/hleVqq/EseaRanks/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ESEA Ranks", "version": "1.6", "description": "Shows player ranks & MMR on match pages", "permissions": [ "webNavigation", "*:\/\/play.esea.net\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/play.esea.net\/*" ], "js": [ "content.js" ] } ], "manifest_version": 2, "icons": { "16": "esea.png", "48": "esea.png", "128": "esea.png" }, "browser_action": { "default_popup": "popup.html" } } |