Showdown Helper

Adds UI elements to Pokemon Showdown for easier battles

Wat is Showdown Helper?

Showdown Helper is een Chrome-extensie ontwikkeld door garvey.nick, en de belangrijkste functie is "Adds UI elements to Pokemon Showdown for easier battles".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Showdown Helper

Download Showdown Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Showdown Helper Showdown Helper
ID lgkjcofboheamlghbmmpegfdjifaaocl
Officiële URL https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl
Beschrijving Adds UI elements to Pokemon Showdown for easier battles
Bestandsgrootte 54.8 KB
Aantal Installaties 192
Huidige Versie 1.2.0
Laatst Bijgewerkt 2020-08-13
Publicatiedatum 2020-08-12
Ontwikkelaar garvey.nick
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/nickgarvey/showdown-helper
Ondersteunde Talen 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"
    }
}