WCL Gear Exporter
Tool to Export Character Gear
Qu'est-ce que WCL Gear Exporter ?
WCL Gear Exporter est une extension Chrome développée par andrewkrufka, et sa fonction principale est "Tool to Export Character Gear".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WCL Gear Exporter
Téléchargez les fichiers d'extension WCL Gear Exporter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | WCL Gear Exporter |
ID | ebjnfjkofjmbcpdhempdgdlnldjccfjk |
URL Officiel | https://chromewebstore.google.com/detail/wcl-gear-exporter/ebjnfjkofjmbcpdhempdgdlnldjccfjk |
Description | Tool to Export Character Gear |
Taille du Fichier | 12.77 KB |
Nombre d'Installations | 72 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2023-08-14 |
Date de Publication | 2023-08-13 |
Développeur | andrewkrufka |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |