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