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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

D&D Beyond Campaign DM Screen 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}