Slash Diablo Tools
Adds a save button the slashdiablo's armory. Maybe someday more to come...
Vad är Slash Diablo Tools?
Slash Diablo Tools är en Chrome-tillägg utvecklad av dschu012, och dess huvudfunktion är "Adds a save button the slashdiablo's armory. Maybe someday more to come...".
Tilläggsskärmbilder
Ladda ner Slash Diablo Tools-förlängningens CRX-fil
Ladda ner Slash Diablo Tools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Slash Diablo Tools |
ID | hfbigecinjgkbmdldhgogmdjfblpkagp |
Officiell webbadress | https://chromewebstore.google.com/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp |
Beskrivning | Adds a save button the slashdiablo's armory. Maybe someday more to come... |
Filstorlek | 210 KB |
Antal Installationer | 115 |
Aktuell Version | 0.11 |
Senast Uppdaterad | 2021-08-01 |
Publiceringsdatum | 2020-05-03 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | dschu012 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/dschu012/slashdiablo-chrome-extension/ |
Hjälpsida URL | https://github.com/dschu012/slashdiablo-chrome-extension/issues |
URL till Sekretesspolicy Sidan | https://github.com/dschu012/slashdiablo-chrome-extension/blob/master/PRIVACY.md |
Stödda Språk | 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 } } |