Smogon Stats
Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics
Smogon Stats란 무엇입니까?
Smogon Stats은(는) pokemondev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension that helps Pokemon Showdown players using Smogon usage data statistics"입니다.
확장 프로그램 스크린샷
Smogon Stats 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |