Smogon Stats

Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics

Co to jest Smogon Stats?

Smogon Stats to rozszerzenie Chrome opracowane przez pokemondev, a jego główną funkcją jest „Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Smogon Stats

Pobierz pliki rozszerzeń Smogon Stats 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

                        This extension it is a tool for Pokemon Showdown that helps you to see the most common Pokémon movesets, items, habilities and other usefull info based on Smogon usage statistics. Enjoy!                    

Podstawowe informacje o rozszerzeniu

Nazwa Smogon Stats Smogon Stats
ID fcgfhfnffkjocaebpeakjojffnccglfp
Oficjalny URL https://chromewebstore.google.com/detail/smogon-stats/fcgfhfnffkjocaebpeakjojffnccglfp
Opis Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics
Rozmiar pliku 1023 KB
Liczba instalacji 430
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2021-03-11
Data Publikacji 2020-12-29
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper pokemondev
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://discord.com/invite/BM7ZRNB
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smogon Stats",
    "version": "1.2.1",
    "description": "Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics",
    "permissions": [],
    "browser_action": {
        "default_popup": "build\/popup.html",
        "default_icon": {
            "16": "build\/img\/logo16.png",
            "32": "build\/img\/logo32.png",
            "48": "build\/img\/logo48.png",
            "64": "build\/img\/logo64.png",
            "128": "build\/img\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.pokemonshowdown.com\/*",
                "*:\/\/*.psim.us\/*"
            ],
            "js": [
                "build\/showdownExtensions.js",
                "build\/js\/jquery-3.5.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "build\/img\/logo16.png",
        "32": "build\/img\/logo32.png",
        "48": "build\/img\/logo48.png",
        "64": "build\/img\/logo64.png",
        "128": "build\/img\/logo128.png"
    }
}