HOTSLogs Extension
Small extension on www.hotslogs.com
Wat is HOTSLogs Extension?
HOTSLogs Extension is een Chrome-extensie ontwikkeld door ahri, en de belangrijkste functie is "Small extension on www.hotslogs.com".
Extensie Screenshots
Download het CRX-bestand van de extensie HOTSLogs Extension
Download HOTSLogs Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | ncmfokmnclmedcfbbmaloocmncmopphf |
| Officiële URL | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
| Beschrijving | Small extension on www.hotslogs.com |
| Bestandsgrootte | 18.64 KB |
| Aantal Installaties | 169 |
| Huidige Versie | 0.3.11 |
| Laatst Bijgewerkt | 2017-04-09 |
| Publicatiedatum | 2017-04-09 |
| Beoordeling | 4.88/5 Totaal 8 Beoordelingen |
| Ontwikkelaar | ahri |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |