Beyond Dice Tray

Adds a Dice Tray to DnDBeyond

什么是Beyond Dice Tray?

Beyond Dice Tray是由Azmoria开发的Chrome扩展程序,该扩展的主要功能是“Adds a Dice Tray to DnDBeyond”。

扩展截图

screenshot

下载Beyond Dice Tray扩展crx文件

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