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.
什么是D&D Beyond Campaign DM Screen?
D&D Beyond Campaign DM Screen是由ashdevfr开发的Chrome扩展程序,该扩展的主要功能是“DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.”。
扩展截图
下载D&D Beyond Campaign DM Screen扩展crx文件
下载D&D Beyond Campaign DM Screen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | D&D Beyond Campaign DM Screen |
ID | oiajbaepngjfcgimlkaedfkdjkklkfhh |
官方URL | https://chromewebstore.google.com/detail/dd-beyond-campaign-dm-scr/oiajbaepngjfcgimlkaedfkdjkklkfhh |
简介 | DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen. |
文件大小 | 296 KB |
安装次数 | 13,115 |
当前版本 | 1.2.4 |
更新时间 | 2022-07-26 |
上架时间 | 2020-06-24 |
评分 | 4.00/5 共30次评分 |
开发者 | ashdevfr |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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'" } |