WCL Gear Exporter
Tool to Export Character Gear
WCL Gear Exporter란 무엇입니까?
WCL Gear Exporter은(는) andrewkrufka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tool to Export Character Gear"입니다.
확장 프로그램 스크린샷
WCL Gear Exporter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A tool to analyze Warcraft Logs and automatically import the factors of the fight (including duration & gearing) into the world of warcraft sims. This allows for easier and more advanced analysis of your rotation and what the best rotation might be. In order to see the 'Sim Player & Fight' button you must be in a specific fight and have a single player selected while also being in the 'Summary' tab. You can message 'Remour' on discord if you run into any issues.
확장 프로그램 기본 정보
이름 | WCL Gear Exporter |
ID | ebjnfjkofjmbcpdhempdgdlnldjccfjk |
공식 URL | https://chromewebstore.google.com/detail/wcl-gear-exporter/ebjnfjkofjmbcpdhempdgdlnldjccfjk |
설명 | Tool to Export Character Gear |
파일 크기 | 12.77 KB |
설치 횟수 | 72 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2023-08-14 |
출시 날짜 | 2023-08-13 |
개발자 | andrewkrufka |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "WCL Gear Exporter", "version": "0.0.1", "description": "Tool to Export Character Gear", "icons": { "128": "icon_128.png", "48": "icon_48.png" }, "permissions": [ "activeTab", "tabs" ], "host_permissions": [ "https:\/\/*.classic.warcraftlogs.com\/*", "https:\/\/classic.warcraftlogs.com\/*", "https:\/\/wowsims.github.io\/wotlk\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.classic.warcraftlogs.com\/*", "https:\/\/classic.warcraftlogs.com\/*", "https:\/\/wowsims.github.io\/wotlk\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "128": "icon_128.png", "48": "icon_48.png" } } } |