Slash Diablo Tools

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

Apa itu Slash Diablo Tools?

Slash Diablo Tools adalah ekstensi Chrome yang dikembangkan oleh dschu012, dan fitur utamanya adalah "Adds a save button the slashdiablo's armory. Maybe someday more to come...".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Slash Diablo Tools

Unduh file ekstensi Slash Diablo Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Slash Diablo Tools Slash Diablo Tools
ID hfbigecinjgkbmdldhgogmdjfblpkagp
URL Resmi https://chromewebstore.google.com/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp
Deskripsi Adds a save button the slashdiablo's armory. Maybe someday more to come...
Ukuran File 210 KB
Jumlah Instalasi 115
Versi Saat Ini 0.11
Terakhir Diperbarui 2021-08-01
Tanggal Publikasi 2020-05-03
Penilaian 5.00/5 Total 3 Penilaian
Pengembang dschu012
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/dschu012/slashdiablo-chrome-extension/
URL Halaman Bantuan https://github.com/dschu012/slashdiablo-chrome-extension/issues
URL Halaman Kebijakan Privasi https://github.com/dschu012/slashdiablo-chrome-extension/blob/master/PRIVACY.md
Bahasa yang Didukung 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
    }
}