Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
Cos'è Showdown Helper?
Showdown Helper è un'estensione di Chrome sviluppata da garvey.nick, e la sua funzione principale è "Adds UI elements to Pokemon Showdown for easier battles".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Showdown Helper
Scarica i file di estensione Showdown Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | lgkjcofboheamlghbmmpegfdjifaaocl |
| URL Ufficiale | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
| Descrizione | Adds UI elements to Pokemon Showdown for easier battles |
| Dimensione del File | 54.8 KB |
| Conteggio Installazioni | 192 |
| Versione Corrente | 1.2.0 |
| Ultimo Aggiornamento | 2020-08-13 |
| Data di Pubblicazione | 2020-08-12 |
| Sviluppatore | garvey.nick |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/nickgarvey/showdown-helper |
| Lingue Supportate | 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"
}
} | |