HOTSLogs Extension
Small extension on www.hotslogs.com
Cos'è HOTSLogs Extension?
HOTSLogs Extension è un'estensione di Chrome sviluppata da ahri, e la sua funzione principale è "Small extension on www.hotslogs.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HOTSLogs Extension
Scarica i file di estensione HOTSLogs Extension 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
An extension of www.hotslogs.com
Currently just adds wins/losses into "Games Played" cells, for convenience.
Optionally colors hero rows in tables by hero subrole - if that setting is set into options. Informazioni di Base sull'Estensione
| Nome | |
| ID | ncmfokmnclmedcfbbmaloocmncmopphf |
| URL Ufficiale | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
| Descrizione | Small extension on www.hotslogs.com |
| Dimensione del File | 18.64 KB |
| Conteggio Installazioni | 169 |
| Versione Corrente | 0.3.11 |
| Ultimo Aggiornamento | 2017-04-09 |
| Data di Pubblicazione | 2017-04-09 |
| Valutazione | 4.88/5 Totale 8 Valutazioni |
| Sviluppatore | ahri |
| Tipo di Pagamento | free |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HOTSLogs Extension",
"manifest_version": 2,
"version": "0.3.11",
"author": "ahri",
"description": "Small extension on www.hotslogs.com",
"browser_action": {
"default_icon": "icon.png"
},
"icons": {
"128": "icon.png"
},
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"permissions": [
"https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*"
],
"js": [
"common.js",
"hero_roles.js",
"contentscript.js",
"favorite_heroes.js",
"win_rate_stats.js"
]
}
]
} | |