EncounterBeyond

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

EncounterBeyond क्या है?

EncounterBeyond Robert R George द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension to send digital rolls from D&D Beyond to EncounterPlus"।

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

screenshot

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

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

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

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