Beyond Dice Tray

Adds a Dice Tray to DnDBeyond

Beyond Dice Trayคืออะไร?

Beyond Dice Tray เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Azmoria และคุณลักษณะหลักของมันคือ "Adds a Dice Tray to DnDBeyond"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Beyond Dice Tray

ดาวน์โหลดไฟล์ส่วนขยาย Beyond Dice Tray ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Beyond Dice Tray Beyond Dice Tray
ID endcocbbbeihjgkcpopkkldchjfhjagn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/beyond-dice-tray/endcocbbbeihjgkcpopkkldchjfhjagn
คำอธิบาย Adds a Dice Tray to DnDBeyond
ขนาดไฟล์ 85.8 KB
จำนวนการติดตั้ง 204
เวอร์ชันปัจจุบัน 0.11
อัปเดตครั้งล่าสุด 2023-10-09
วันที่เผยแพร่ 2023-02-08
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Azmoria
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Azmoria/DnDBeyond-Dice-Tray
ภาษาที่รองรับ 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"
    }
}