Slash Diablo Tools

Adds a save button the slashdiablo's armory. Maybe someday more to come...

What is Slash Diablo Tools?

Slash Diablo Tools is a Chrome extension developed by dschu012, and its main feature is "Adds a save button the slashdiablo's armory. Maybe someday more to come...".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Slash Diablo Tools Extension CRX File

Download Slash Diablo Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Slash Diablo Tools Slash Diablo Tools
ID hfbigecinjgkbmdldhgogmdjfblpkagp
Official URL https://chromewebstore.google.com/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp
Description Adds a save button the slashdiablo's armory. Maybe someday more to come...
File Size 210 KB
Installation Count 115
Current Version 0.11
Last Updated 2021-08-01
Publish Date 2020-05-03
Rating 5.00/5 Total 3 Ratings
Developer dschu012
Email [email protected]
Payment Type free
Extension Website https://github.com/dschu012/slashdiablo-chrome-extension/
Help Page URL https://github.com/dschu012/slashdiablo-chrome-extension/issues
Privacy Policy Page URL https://github.com/dschu012/slashdiablo-chrome-extension/blob/master/PRIVACY.md
Supported Languages 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
    }
}