EncounterBeyond

A simple extension to send digital rolls from D&D Beyond to EncounterPlus

EncounterBeyondคืออะไร?

EncounterBeyond เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robert R George และคุณลักษณะหลักของมันคือ "A simple extension to send digital rolls from D&D Beyond to EncounterPlus"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EncounterBeyond

ดาวน์โหลดไฟล์ส่วนขยาย EncounterBeyond ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension allows a player to forward their dice rolls on D&D Beyond to the EncounterPlus VTT.

Now supports direct connection using local address
Detects crits and labels them when sending to EncounterPlus
Automatic detection and setting the Encounter Plus remote host
The ability to send spell and action text through chat to EncounterPlus
Option to randomly send an insult when using Vicious Mockery

Requires EncounterPlus version 4.9.0 or higher                    

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

ชื่อ EncounterBeyond EncounterBeyond
ID gnbkcgljobchhhmonolgielhfgpphmej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej
คำอธิบาย A simple extension to send digital rolls from D&D Beyond to EncounterPlus
ขนาดไฟล์ 20.22 KB
จำนวนการติดตั้ง 635
เวอร์ชันปัจจุบัน 0.8
อัปเดตครั้งล่าสุด 2022-06-23
วันที่เผยแพร่ 2020-07-18
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Robert R George
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rrgeorge/EncounterBeyond
URL หน้าช่วยเหลือ https://github.com/rrgeorge/EncounterBeyond
URL หน้านโยบายความเป็นส่วนตัว https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EncounterBeyond",
    "description": "A simple extension to send digital rolls from D&D Beyond to EncounterPlus",
    "manifest_version": 3,
    "version": "0.8",
    "icons": {
        "48": "encounter48.png",
        "96": "encounter96.png"
    },
    "host_permissions": [
        "*:\/\/*\/api\/messages"
    ],
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_icon": {
            "19": "encounter19.png",
            "38": "encounter38.png"
        },
        "default_title": "EncounterBeyond",
        "browser_style": true,
        "default_popup": "options.html",
        "show_matches": [
            "https:\/\/*.dndbeyond.com\/profile\/*\/characters\/*",
            "https:\/\/*.dndbeyond.com\/characters\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.dndbeyond.com\/profile\/*\/characters\/*",
                "https:\/\/*.dndbeyond.com\/characters\/*"
            ],
            "run_at": "document_end",
            "js": [
                "rollgrabber.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/client\/"
            ],
            "run_at": "document_end",
            "js": [
                "hostgrab.js"
            ]
        }
    ]
}