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
Eメール [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"
    }
}