Beyond Dice Tray

Adds a Dice Tray to DnDBeyond

Beyond Dice Tray là gì?

Beyond Dice Tray là một tiện ích mở rộng Chrome được phát triển bởi Azmoria, và tính năng chính của nó là "Adds a Dice Tray to DnDBeyond".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Beyond Dice Tray

Tải xuống các tệp mở rộng Beyond Dice Tray 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

                        Adds a dice tray to DnDBeyond to use for streaming, virtual cameras or on tv tables. With a customizable background that can be green screened. 

(Dice speed no longer functions and has been removed)                    

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

Tên Beyond Dice Tray Beyond Dice Tray
ID endcocbbbeihjgkcpopkkldchjfhjagn
URL Chính Thức https://chromewebstore.google.com/detail/beyond-dice-tray/endcocbbbeihjgkcpopkkldchjfhjagn
Mô tả Adds a Dice Tray to DnDBeyond
Kích Thước Tệp 85.8 KB
Số Lần Cài Đặt 204
Phiên Bản Hiện Tại 0.11
Cập Nhật Lần Cuối 2023-10-09
Ngày Phát Hành 2023-02-08
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Azmoria
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Azmoria/DnDBeyond-Dice-Tray
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Beyond Dice Tray",
    "description": "Adds a Dice Tray to DnDBeyond",
    "version": "0.11",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/*encounter*",
                "https:\/\/www.dndbeyond.com\/*characters*",
                "https:\/\/www.dndbeyond.com\/*combat*"
            ],
            "js": [
                "Load.js",
                "content.js",
                "jquery-3.6.0.min.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "jquery-3.6.0.min.js",
                "diceTray.css",
                "content.js",
                "main.js"
            ],
            "matches": [
                "https:\/\/www.dndbeyond.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "options.html"
    }
}