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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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'"
} | |