D&D Beyond Campaign DM Screen
DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.
What is D&D Beyond Campaign DM Screen?
D&D Beyond Campaign DM Screen is a Chrome extension developed by ashdevfr, and its main feature is "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.".
Extension Screenshots
Download D&D Beyond Campaign DM Screen Extension CRX File
Download D&D Beyond Campaign DM Screen 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
This extension extends the D&D Beyond's campaign page to turn it into a DM screen. In the campaign page of D&D Beyond and it will add for each characters their stats such as: - AC - HP - Initiative bonus - Saving throws - Passive checks
Extension Basic Information
Name | D&D Beyond Campaign DM Screen |
ID | oiajbaepngjfcgimlkaedfkdjkklkfhh |
Official URL | https://chromewebstore.google.com/detail/dd-beyond-campaign-dm-scr/oiajbaepngjfcgimlkaedfkdjkklkfhh |
Description | DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen. |
File Size | 296 KB |
Installation Count | 13,115 |
Current Version | 1.2.4 |
Last Updated | 2022-07-26 |
Publish Date | 2020-06-24 |
Rating | 4.00/5 Total 30 Ratings |
Developer | ashdevfr |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "D&D Beyond Campaign DM Screen", "version": "1.2.4", "description": "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.", "manifest_version": 2, "icons": { "16": "assets\/icon-16x16.png", "32": "assets\/icon-32x32.png", "128": "assets\/icon-128x128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "D&D Beyond Campaign DM Screen", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.dndbeyond.com\/campaigns\/*", "http:\/\/www.dndbeyond.com\/campaigns\/*" ], "js": [ "content.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |