Smogon Stats
Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics
Что такое Smogon Stats?
Smogon Stats - это расширение Chrome, разработанное pokemondev, и его основная функция - "Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics".
Снимки экрана расширения
Скачать файл CRX расширения Smogon Stats
Скачайте файлы расширений Smogon Stats в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension it is a tool for Pokemon Showdown that helps you to see the most common Pokémon movesets, items, habilities and other usefull info based on Smogon usage statistics. Enjoy!
Основная информация о расширении
Название | Smogon Stats |
ID | fcgfhfnffkjocaebpeakjojffnccglfp |
Официальный URL | https://chromewebstore.google.com/detail/smogon-stats/fcgfhfnffkjocaebpeakjojffnccglfp |
Описание | Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics |
Размер файла | 1023 KB |
Количество установок | 430 |
Текущая Версия | 1.2.1 |
Последнее Обновление | 2021-03-11 |
Дата публикации | 2020-12-29 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | pokemondev |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://discord.com/invite/BM7ZRNB |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Smogon Stats", "version": "1.2.1", "description": "Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics", "permissions": [], "browser_action": { "default_popup": "build\/popup.html", "default_icon": { "16": "build\/img\/logo16.png", "32": "build\/img\/logo32.png", "48": "build\/img\/logo48.png", "64": "build\/img\/logo64.png", "128": "build\/img\/logo128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/play.pokemonshowdown.com\/*", "*:\/\/*.psim.us\/*" ], "js": [ "build\/showdownExtensions.js", "build\/js\/jquery-3.5.1.min.js" ] } ], "background": { "scripts": [ "build\/background.js" ], "persistent": false }, "icons": { "16": "build\/img\/logo16.png", "32": "build\/img\/logo32.png", "48": "build\/img\/logo48.png", "64": "build\/img\/logo64.png", "128": "build\/img\/logo128.png" } } |