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
官方網址 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"
        }
    }
}