Showdown Helper

Adds UI elements to Pokemon Showdown for easier battles

什么是Showdown Helper?

Showdown Helper是由garvey.nick开发的Chrome扩展程序,该扩展的主要功能是“Adds UI elements to Pokemon Showdown for easier battles”。

扩展截图

screenshot

下载Showdown Helper扩展crx文件

下载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"
    }
}