EncounterBeyond

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

Co to jest EncounterBeyond?

EncounterBeyond to rozszerzenie Chrome opracowane przez Robert R George, a jego główną funkcją jest „A simple extension to send digital rolls from D&D Beyond to EncounterPlus”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia EncounterBeyond

Pobierz pliki rozszerzeń EncounterBeyond w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa EncounterBeyond EncounterBeyond
ID gnbkcgljobchhhmonolgielhfgpphmej
Oficjalny URL https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej
Opis A simple extension to send digital rolls from D&D Beyond to EncounterPlus
Rozmiar pliku 20.22 KB
Liczba instalacji 635
Aktualna Wersja 0.8
Ostatnia Aktualizacja 2022-06-23
Data Publikacji 2020-07-18
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Robert R George
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/rrgeorge/EncounterBeyond
Adres URL Strony Pomocy https://github.com/rrgeorge/EncounterBeyond
Adres URL Strony Polityki Prywatności https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md
Obsługiwane Języki 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"
            ]
        }
    ]
}