WCL Gear Exporter
Tool to Export Character Gear
WCL Gear Exporterคืออะไร?
WCL Gear Exporter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andrewkrufka และคุณลักษณะหลักของมันคือ "Tool to Export Character Gear"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WCL Gear Exporter
ดาวน์โหลดไฟล์ส่วนขยาย WCL Gear Exporter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } } |