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”。
擴展截圖
下載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 擴展基本資訊
| 名稱 | |
| ID | lgkjcofboheamlghbmmpegfdjifaaocl |
| 官方網址 | 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"
}
} | |