Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
Showdown Helper란 무엇입니까?
Showdown Helper은(는) garvey.nick에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds UI elements to Pokemon Showdown for easier battles"입니다.
확장 프로그램 스크린샷
Showdown Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Showdown Helper |
ID | lgkjcofboheamlghbmmpegfdjifaaocl |
공식 URL | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
설명 | Adds UI elements to Pokemon Showdown for easier battles |
파일 크기 | 54.8 KB |
설치 횟수 | 192 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2020-08-13 |
출시 날짜 | 2020-08-12 |
개발자 | garvey.nick |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/nickgarvey/showdown-helper |
지원되는 언어 | 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" } } |