Pokemon Showdown Type Helper

Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.

O que é Pokemon Showdown Type Helper?

Pokemon Showdown Type Helper é uma extensão do Chrome desenvolvida por coltonjmsblake, e sua principal característica é "Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Pokemon Showdown Type Helper

Baixe arquivos de extensão Pokemon Showdown Type Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        An extension for displaying stats, type weaknesses, resistances, and immunities in Pokemon Showdown.                    

Informações Básicas da Extensão

Nome Pokemon Showdown Type Helper Pokemon Showdown Type Helper
ID ajhdnfehenofjfbajfdhjoankdheielc
URL Oficial https://chromewebstore.google.com/detail/pokemon-showdown-type-hel/ajhdnfehenofjfbajfdhjoankdheielc
Descrição Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.
Tamanho do Arquivo 35.39 KB
Contagem de Instalações 4,690
Versão Atual 0.0.8
Última Atualização 2023-06-30
Data de Publicação 2022-04-04
Classificação 4.86/5 Total de 14 Avaliações
Desenvolvedor coltonjmsblake
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/coltonb/pokemon-showdown-type-helper
URL da Página de Ajuda https://github.com/coltonb/pokemon-showdown-type-helper/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pokemon Showdown Type Helper",
    "description": "Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.",
    "version": "0.0.8",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "pokemonShowdownTypeHelper.js"
            ],
            "matches": [
                "https:\/\/play.pokemonshowdown.com\/*",
                "https:\/\/*.psim.us\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.pokemonshowdown.com\/*",
                "https:\/\/*.psim.us\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{9959496f-a6b0-4bf4-a77d-0c1697b50f96}"
        }
    }
}