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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ashdevfr และคุณลักษณะหลักของมันคือ "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย D&D Beyond Campaign DM Screen
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| อีเมล | [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'"
} | |