Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
O que é Showdown Helper?
Showdown Helper é uma extensão do Chrome desenvolvida por garvey.nick, e sua principal característica é "Adds UI elements to Pokemon Showdown for easier battles".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Showdown Helper
Baixe arquivos de extensão Showdown Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Showdown Helper |
ID | lgkjcofboheamlghbmmpegfdjifaaocl |
URL Oficial | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
Descrição | Adds UI elements to Pokemon Showdown for easier battles |
Tamanho do Arquivo | 54.8 KB |
Contagem de Instalações | 192 |
Versão Atual | 1.2.0 |
Última Atualização | 2020-08-13 |
Data de Publicação | 2020-08-12 |
Desenvolvedor | garvey.nick |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/nickgarvey/showdown-helper |
Idiomas Suportados | 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" } } |