Slash Diablo Tools

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

Slash Diablo Tools là gì?

Slash Diablo Tools là một tiện ích mở rộng Chrome được phát triển bởi dschu012, và tính năng chính của nó là "Adds a save button the slashdiablo's armory. Maybe someday more to come...".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Slash Diablo Tools

Tải xuống các tệp mở rộng Slash Diablo Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Slash Diablo Tools Slash Diablo Tools
ID hfbigecinjgkbmdldhgogmdjfblpkagp
URL Chính Thức https://chromewebstore.google.com/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp
Mô tả Adds a save button the slashdiablo's armory. Maybe someday more to come...
Kích Thước Tệp 210 KB
Số Lần Cài Đặt 115
Phiên Bản Hiện Tại 0.11
Cập Nhật Lần Cuối 2021-08-01
Ngày Phát Hành 2020-05-03
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển dschu012
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dschu012/slashdiablo-chrome-extension/
URL Trang Trợ Giúp https://github.com/dschu012/slashdiablo-chrome-extension/issues
URL Trang Chính Sách Bảo Mật https://github.com/dschu012/slashdiablo-chrome-extension/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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
    }
}