Slash Diablo Tools
Adds a save button the slashdiablo's armory. Maybe someday more to come...
什么是Slash Diablo Tools?
Slash Diablo Tools是由dschu012开发的Chrome扩展程序,该扩展的主要功能是“Adds a save button the slashdiablo's armory. Maybe someday more to come...”。
扩展截图
下载Slash Diablo Tools扩展crx文件
下载Slash Diablo Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add additional functionality to the slashdiablo armory: * Save the current armory character you are viewing as a d2s to be used in game. * Export missing items from your grail to clipboard, to easily paste in your BH item filter.
扩展基本信息
名称 | Slash Diablo Tools |
ID | hfbigecinjgkbmdldhgogmdjfblpkagp |
官方URL | https://chromewebstore.google.com/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp |
简介 | Adds a save button the slashdiablo's armory. Maybe someday more to come... |
文件大小 | 210 KB |
安装次数 | 115 |
当前版本 | 0.11 |
更新时间 | 2021-08-01 |
上架时间 | 2020-05-03 |
评分 | 5.00/5 共3次评分 |
开发者 | dschu012 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/dschu012/slashdiablo-chrome-extension/ |
帮助页面URL | https://github.com/dschu012/slashdiablo-chrome-extension/issues |
隐私政策页面URL | https://github.com/dschu012/slashdiablo-chrome-extension/blob/master/PRIVACY.md |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Slash Diablo Tools", "version": "0.11", "description": "Adds a save button the slashdiablo's armory. Maybe someday more to come...", "manifest_version": 2, "icons": { "16": "img\/16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.slashdiablo.net\/*", "https:\/\/*.slashgaming.net\/*" ], "js": [ "start.js" ], "permissions": [ "storage", "clipboardWrite" ], "run_at": "document_end" } ], "web_accessible_resources": [ "css\/styles.css", "lib\/jquery-3.3.1.min.js", "lib\/constants.bundle.min.js", "lib\/d2s.bundle.min.js", "armory.js", "grail.js" ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false } } |