WCL Gear Exporter

Tool to Export Character Gear

什么是WCL Gear Exporter?

WCL Gear Exporter是由andrewkrufka开发的Chrome扩展程序,该扩展的主要功能是“Tool to Export Character Gear”。

扩展截图

screenshot

下载WCL Gear Exporter扩展crx文件

下载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 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"
        }
    }
}