Beyond Dice Tray

Adds a Dice Tray to DnDBeyond

Apa itu Beyond Dice Tray?

Beyond Dice Tray adalah ekstensi Chrome yang dikembangkan oleh Azmoria, dan fitur utamanya adalah "Adds a Dice Tray to DnDBeyond".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Beyond Dice Tray

Unduh file ekstensi Beyond Dice Tray dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama Beyond Dice Tray Beyond Dice Tray
ID endcocbbbeihjgkcpopkkldchjfhjagn
URL Resmi https://chromewebstore.google.com/detail/beyond-dice-tray/endcocbbbeihjgkcpopkkldchjfhjagn
Deskripsi Adds a Dice Tray to DnDBeyond
Ukuran File 85.8 KB
Jumlah Instalasi 204
Versi Saat Ini 0.11
Terakhir Diperbarui 2023-10-09
Tanggal Publikasi 2023-02-08
Penilaian 3.00/5 Total 1 Penilaian
Pengembang Azmoria
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Azmoria/DnDBeyond-Dice-Tray
Bahasa yang Didukung 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"
    }
}