HOTSLogs Extension
Small extension on www.hotslogs.com
Qu'est-ce que HOTSLogs Extension ?
HOTSLogs Extension est une extension Chrome développée par ahri, et sa fonction principale est "Small extension on www.hotslogs.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HOTSLogs Extension
Téléchargez les fichiers d'extension HOTSLogs Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | HOTSLogs Extension |
ID | ncmfokmnclmedcfbbmaloocmncmopphf |
URL Officiel | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
Description | Small extension on www.hotslogs.com |
Taille du Fichier | 18.64 KB |
Nombre d'Installations | 169 |
Version Actuelle | 0.3.11 |
Dernière Mise à Jour | 2017-04-09 |
Date de Publication | 2017-04-09 |
Évaluation | 4.88/5 Total 8 Évaluations |
Développeur | ahri |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |