Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
Co to jest Showdown Helper?
Showdown Helper to rozszerzenie Chrome opracowane przez garvey.nick, a jego główną funkcją jest „Adds UI elements to Pokemon Showdown for easier battles”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Showdown Helper
Pobierz pliki rozszerzeń Showdown Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Showdown Helper |
ID | lgkjcofboheamlghbmmpegfdjifaaocl |
Oficjalny URL | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
Opis | Adds UI elements to Pokemon Showdown for easier battles |
Rozmiar pliku | 54.8 KB |
Liczba instalacji | 192 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2020-08-13 |
Data Publikacji | 2020-08-12 |
Deweloper | garvey.nick |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/nickgarvey/showdown-helper |
Obsługiwane Języki | 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" } } |