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
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } } |