Beyond Dice Tray
Adds a Dice Tray to DnDBeyond
What is Beyond Dice Tray?
Beyond Dice Tray is a Chrome extension developed by Azmoria, and its main feature is "Adds a Dice Tray to DnDBeyond".
Extension Screenshots
Download Beyond Dice Tray Extension CRX File
Download Beyond Dice Tray extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | Beyond Dice Tray |
ID | endcocbbbeihjgkcpopkkldchjfhjagn |
Official URL | https://chromewebstore.google.com/detail/beyond-dice-tray/endcocbbbeihjgkcpopkkldchjfhjagn |
Description | Adds a Dice Tray to DnDBeyond |
File Size | 85.8 KB |
Installation Count | 204 |
Current Version | 0.11 |
Last Updated | 2023-10-09 |
Publish Date | 2023-02-08 |
Rating | 3.00/5 Total 1 Ratings |
Developer | Azmoria |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Azmoria/DnDBeyond-Dice-Tray |
Supported Languages | 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" } } |