Showdown Helper

Adds UI elements to Pokemon Showdown for easier battles

Что такое Showdown Helper?

Showdown Helper - это расширение Chrome, разработанное garvey.nick, и его основная функция - "Adds UI elements to Pokemon Showdown for easier battles".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Showdown Helper

Скачайте файлы расширений Showdown Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Showdown Helper Showdown Helper
ID lgkjcofboheamlghbmmpegfdjifaaocl
Официальный URL https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl
Описание Adds UI elements to Pokemon Showdown for easier battles
Размер файла 54.8 KB
Количество установок 192
Текущая Версия 1.2.0
Последнее Обновление 2020-08-13
Дата публикации 2020-08-12
Разработчик garvey.nick
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/nickgarvey/showdown-helper
Поддерживаемые языки 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"
    }
}