Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
What is Showdown Helper?
Showdown Helper is a Chrome extension developed by garvey.nick, and its main feature is "Adds UI elements to Pokemon Showdown for easier battles".
Extension Screenshots
Download Showdown Helper Extension CRX File
Download Showdown Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Showdown Helper |
ID | lgkjcofboheamlghbmmpegfdjifaaocl |
Official URL | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
Description | Adds UI elements to Pokemon Showdown for easier battles |
File Size | 54.8 KB |
Installation Count | 192 |
Current Version | 1.2.0 |
Last Updated | 2020-08-13 |
Publish Date | 2020-08-12 |
Developer | garvey.nick |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/nickgarvey/showdown-helper |
Supported Languages | 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" } } |