Beyond Dice Tray
Adds a Dice Tray to DnDBeyond
什麼是Beyond Dice Tray?
Beyond Dice Tray是由Azmoria開發的Chrome擴展程式,該擴展的主要功能是“Adds a Dice Tray to DnDBeyond”。
擴展截圖
下載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 |
ID | endcocbbbeihjgkcpopkkldchjfhjagn |
官方網址 | 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" } } |