Showdown Helper

Adds UI elements to Pokemon Showdown for easier battles

Qu'est-ce que Showdown Helper ?

Showdown Helper est une extension Chrome développée par garvey.nick, et sa fonction principale est "Adds UI elements to Pokemon Showdown for easier battles".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Showdown Helper

Téléchargez les fichiers d'extension Showdown Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Showdown Helper is a Chrome extension that adds utilities to the Pokemon Showdown UI.

Feature List:
* Clicking on a Pokemon in the team list will go directly to the Smogon page for it.
* Show a notification on battle end
* That's it for now :)

https://github.com/nickgarvey/showdown-helper                    

Informations de Base sur l'Extension

Nom Showdown Helper Showdown Helper
ID lgkjcofboheamlghbmmpegfdjifaaocl
URL Officiel https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl
Description Adds UI elements to Pokemon Showdown for easier battles
Taille du Fichier 54.8 KB
Nombre d'Installations 192
Version Actuelle 1.2.0
Dernière Mise à Jour 2020-08-13
Date de Publication 2020-08-12
Développeur garvey.nick
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nickgarvey/showdown-helper
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Showdown Helper",
    "version": "1.2.0",
    "description": "Adds UI elements to Pokemon Showdown for easier battles",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "notifications",
        "https:\/\/www.smogon.com\/",
        "https:\/\/play.pokemonshowdown.com\/"
    ],
    "background": {
        "scripts": [
            "toggle_icon.js",
            "handle_message.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.pokemonshowdown.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_icon": "icon.png"
    }
}