HOTSLogs Extension

Small extension on www.hotslogs.com

Co to jest HOTSLogs Extension?

HOTSLogs Extension to rozszerzenie Chrome opracowane przez ahri, a jego główną funkcją jest „Small extension on www.hotslogs.com”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia HOTSLogs Extension

Pobierz pliki rozszerzeń HOTSLogs Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa HOTSLogs Extension HOTSLogs Extension
ID ncmfokmnclmedcfbbmaloocmncmopphf
Oficjalny URL https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf
Opis Small extension on www.hotslogs.com
Rozmiar pliku 18.64 KB
Liczba instalacji 169
Aktualna Wersja 0.3.11
Ostatnia Aktualizacja 2017-04-09
Data Publikacji 2017-04-09
Ocena 4.88/5 Łącznie 8 Oceny
Deweloper ahri
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}