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 là gì?

D&D Beyond Campaign DM Screen là một tiện ích mở rộng Chrome được phát triển bởi ashdevfr, và tính năng chính của nó là "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng D&D Beyond Campaign DM Screen

Tải xuống các tệp mở rộng D&D Beyond Campaign DM Screen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên D&D Beyond Campaign DM Screen D&D Beyond Campaign DM Screen
ID oiajbaepngjfcgimlkaedfkdjkklkfhh
URL Chính Thức https://chromewebstore.google.com/detail/dd-beyond-campaign-dm-scr/oiajbaepngjfcgimlkaedfkdjkklkfhh
Mô tả DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.
Kích Thước Tệp 296 KB
Số Lần Cài Đặt 13,115
Phiên Bản Hiện Tại 1.2.4
Cập Nhật Lần Cuối 2022-07-26
Ngày Phát Hành 2020-06-24
Đánh Giá 4.00/5 Tổng số 30 Đánh Giá
Nhà Phát Triển ashdevfr
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}