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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}