HOTSLogs Extension

Small extension on www.hotslogs.com

Was ist HOTSLogs Extension?

HOTSLogs Extension ist eine Chrome-Erweiterung, die von ahri entwickelt wurde, und ihr Hauptmerkmal ist "Small extension on www.hotslogs.com".

Erweiterungsscreenshots

screenshot
screenshot

HOTSLogs Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie HOTSLogs Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name HOTSLogs Extension HOTSLogs Extension
ID ncmfokmnclmedcfbbmaloocmncmopphf
Offizielle URL https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf
Beschreibung Small extension on www.hotslogs.com
Dateigröße 18.64 KB
Installationsanzahl 169
Aktuelle Version 0.3.11
Letztes Update 2017-04-09
Veröffentlichungsdatum 2017-04-09
Bewertung 4.88/5 Insgesamt 8 Bewertungen
Entwickler ahri
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}