Slash Diablo Tools
Adds a save button the slashdiablo's armory. Maybe someday more to come...
Was ist Slash Diablo Tools?
Slash Diablo Tools ist eine Chrome-Erweiterung, die von dschu012 entwickelt wurde, und ihr Hauptmerkmal ist "Adds a save button the slashdiablo's armory. Maybe someday more to come...".
Erweiterungsscreenshots
Slash Diablo Tools-Erweiterungs-CRX-Datei herunterladen
Laden Sie Slash Diablo Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hfbigecinjgkbmdldhgogmdjfblpkagp |
| Offizielle URL | https://chromewebstore.google.com/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp |
| Beschreibung | Adds a save button the slashdiablo's armory. Maybe someday more to come... |
| Dateigröße | 210 KB |
| Installationsanzahl | 115 |
| Aktuelle Version | 0.11 |
| Letztes Update | 2021-08-01 |
| Veröffentlichungsdatum | 2020-05-03 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | dschu012 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/dschu012/slashdiablo-chrome-extension/ |
| Hilfeseite URL | https://github.com/dschu012/slashdiablo-chrome-extension/issues |
| URL der Datenschutzrichtlinien-Seite | https://github.com/dschu012/slashdiablo-chrome-extension/blob/master/PRIVACY.md |
| Unterstützte Sprachen | 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
}
} | |