LearnedLeague 1DS Stats Extension

Add some extra stats for LearnedLeague 1DS results.

Co to jest LearnedLeague 1DS Stats Extension?

LearnedLeague 1DS Stats Extension to rozszerzenie Chrome opracowane przez mengmengzh, a jego główną funkcją jest „Add some extra stats for LearnedLeague 1DS results.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia LearnedLeague 1DS Stats Extension

Pobierz pliki rozszerzeń LearnedLeague 1DS Stats 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

                        Adds optimum moneying stats to 1DS results for Learned League.                    

Podstawowe informacje o rozszerzeniu

Nazwa LearnedLeague 1DS Stats Extension LearnedLeague 1DS Stats Extension
ID gbnodppoajpfdeknimjlglnpdkhbomfd
Oficjalny URL https://chromewebstore.google.com/detail/learnedleague-1ds-stats-e/gbnodppoajpfdeknimjlglnpdkhbomfd
Opis Add some extra stats for LearnedLeague 1DS results.
Rozmiar pliku 37.03 KB
Liczba instalacji 50
Aktualna Wersja 0.0.5.1
Ostatnia Aktualizacja 2019-04-24
Data Publikacji 2019-04-23
Deweloper mengmengzh
Typ Płatności free
Strona Rozszerzenia https://github.com/mengmengzh/learnedleague-tools
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LearnedLeague 1DS Stats Extension",
    "version": "0.0.5.1",
    "description": "Add some extra stats for LearnedLeague 1DS results.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "webRequest",
        "https:\/\/*.learnedleague.com\/"
    ],
    "page_action": {
        "default_title": "LL 1DS Stats",
        "default_icon": "l32.png",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "https:\/\/*.learnedleague.com\/oneday.php?*"
            ]
        }
    ]
}