D&D Beyond DM-Screen & Spell List Manager

Customizable DM Screen for D&D Beyond Campaigns & Spell List Manager

D&D Beyond DM-Screen & Spell List Managerคืออะไร?

D&D Beyond DM-Screen & Spell List Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย silas และคุณลักษณะหลักของมันคือ "Customizable DM Screen for D&D Beyond Campaigns & Spell List Manager"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย D&D Beyond DM-Screen & Spell List Manager

ดาวน์โหลดไฟล์ส่วนขยาย D&D Beyond DM-Screen & Spell List Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        https://dmscreen.silas.link

~~~DM SCREEN~~~
https://dmscreen.silas.link/dmScreen

Decide for yourself which information of the players should be displayed!

If a character is open under DNDBeyond, the extension's settings can be opened. Here you can customize the DM Screen. If you have any questions, visit the website or contact me via the form on the webiste


~~~Spell List Manager ~~~
https://dmscreen.silas.link/spellLists

Some classes can change theirs Spells on a daily basis. For these classes, it is good to have some prepared spell lists for fighting, exploration, social encounters or others. With this plugin, you can save your current prepared spells (ignoring cantrips) and on a later day select them again. 

If you have any questions, visit the website or contact me via the form on the webiste.

~~~Defense Rolls~~~
https://dmscreen.silas.link/defenseRolls

A Defense Roll is an alternative way to shape the monster attacks. The goal is to let the player roll outside of his turn and get him more involved. Here, the player rolls to see if he can escape the monster's attack. It also often improves roleplay because by having the player make the roll, you no longer describes how the monster attacks, but rather how the player dodges. The player is the focus of the narrative.

If you have any questions, visit the website or contact me via the form on the website.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ D&D Beyond DM-Screen & Spell List Manager D&D Beyond DM-Screen & Spell List Manager
ID plmclacdpenibhmjmbnbdbefpjnjfclo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dd-beyond-dm-screen-spell/plmclacdpenibhmjmbnbdbefpjnjfclo
คำอธิบาย Customizable DM Screen for D&D Beyond Campaigns & Spell List Manager
ขนาดไฟล์ 13.6 MB
จำนวนการติดตั้ง 2,352
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-09-09
วันที่เผยแพร่ 2020-05-24
คะแนน 3.71/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา silas
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://dmscreen.silas.link/
URL หน้าช่วยเหลือ https://dmscreen.silas.link/contact
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.1",
    "short_name": "D&D DM-Screen",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/campaigns\/*",
                "https:\/\/dndbeyond.com\/campaigns\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/monsters\/*"
            ],
            "js": [
                "monsterAttackSave.bundle.js",
                "monsterSettings.bundle.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/?dmScreen=1&c=*",
                "https:\/\/silas.link\/blank.html?c=*"
            ],
            "js": [
                "prepareScreen.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/profile\/*\/characters\/*?dmScreen=1",
                "https:\/\/dndbeyond.com\/profile\/*\/characters\/*?dmScreen=1",
                "https:\/\/www.dndbeyond.com\/characters\/*?dmScreen=1",
                "https:\/\/dndbeyond.com\/characters\/*?dmScreen=1"
            ],
            "js": [
                "valueExtractor.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/profile\/*\/characters\/*",
                "https:\/\/dndbeyond.com\/profile\/*\/characters\/*",
                "https:\/\/www.dndbeyond.com\/characters\/*",
                "https:\/\/dndbeyond.com\/characters\/*"
            ],
            "js": [
                "settings.bundle.js",
                "spellList.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": "img\/dndSingle64.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.dndbeyond.com\/",
        "https:\/\/dndbeyond.com\/"
    ],
    "icons": {
        "128": "img\/dndScreen128.png"
    }
}