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 |
官方網址 | 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'" } |