Pokemon Showdown Type Helper
Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.
Co to jest Pokemon Showdown Type Helper?
Pokemon Showdown Type Helper to rozszerzenie Chrome opracowane przez coltonjmsblake, a jego główną funkcją jest „Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pokemon Showdown Type Helper
Pobierz pliki rozszerzeń Pokemon Showdown Type 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
An extension for displaying stats, type weaknesses, resistances, and immunities in Pokemon Showdown.
Podstawowe informacje o rozszerzeniu
Nazwa | Pokemon Showdown Type Helper |
ID | ajhdnfehenofjfbajfdhjoankdheielc |
Oficjalny URL | https://chromewebstore.google.com/detail/pokemon-showdown-type-hel/ajhdnfehenofjfbajfdhjoankdheielc |
Opis | Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats. |
Rozmiar pliku | 35.39 KB |
Liczba instalacji | 4,690 |
Aktualna Wersja | 0.0.8 |
Ostatnia Aktualizacja | 2023-06-30 |
Data Publikacji | 2022-04-04 |
Ocena | 4.86/5 Łącznie 14 Oceny |
Deweloper | coltonjmsblake |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/coltonb/pokemon-showdown-type-helper |
Adres URL Strony Pomocy | https://github.com/coltonb/pokemon-showdown-type-helper/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pokemon Showdown Type Helper", "description": "Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.", "version": "0.0.8", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ { "resources": [ "pokemonShowdownTypeHelper.js" ], "matches": [ "https:\/\/play.pokemonshowdown.com\/*", "https:\/\/*.psim.us\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/play.pokemonshowdown.com\/*", "https:\/\/*.psim.us\/*" ], "js": [ "injector.js" ] } ], "browser_specific_settings": { "gecko": { "id": "{9959496f-a6b0-4bf4-a77d-0c1697b50f96}" } } } |