Beyond Dice Tray

Adds a Dice Tray to DnDBeyond

Hvad er Beyond Dice Tray?

Beyond Dice Tray er en Chrome-udvidelse udviklet af Azmoria, og dens hovedfunktion er "Adds a Dice Tray to DnDBeyond".

Udvidelsesskærmbilleder

screenshot

Download Beyond Dice Tray-udvidelses-CRX-fil

Download Beyond Dice Tray-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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)                    

Grundlæggende oplysninger om udvidelsen

Navn Beyond Dice Tray Beyond Dice Tray
ID endcocbbbeihjgkcpopkkldchjfhjagn
Officiel URL https://chromewebstore.google.com/detail/beyond-dice-tray/endcocbbbeihjgkcpopkkldchjfhjagn
Beskrivelse Adds a Dice Tray to DnDBeyond
Filstørrelse 85.8 KB
Antal Installationer 204
Nuværende Version 0.11
Senest Opdateret 2023-10-09
Udgivelsesdato 2023-02-08
Bedømmelse 3.00/5 Samlet 1 Bedømmelser
Udvikler Azmoria
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Azmoria/DnDBeyond-Dice-Tray
Understøttede Sprog 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"
    }
}