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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में D&D Beyond Campaign DM Screen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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'"
}