EncounterBeyond

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

Cos'è EncounterBeyond?

EncounterBeyond è un'estensione di Chrome sviluppata da Robert R George, e la sua funzione principale è "A simple extension to send digital rolls from D&D Beyond to EncounterPlus".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione EncounterBeyond

Scarica i file di estensione EncounterBeyond in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome EncounterBeyond EncounterBeyond
ID gnbkcgljobchhhmonolgielhfgpphmej
URL Ufficiale https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej
Descrizione A simple extension to send digital rolls from D&D Beyond to EncounterPlus
Dimensione del File 20.22 KB
Conteggio Installazioni 635
Versione Corrente 0.8
Ultimo Aggiornamento 2022-06-23
Data di Pubblicazione 2020-07-18
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Robert R George
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rrgeorge/EncounterBeyond
URL della Pagina di Aiuto https://github.com/rrgeorge/EncounterBeyond
URL della Pagina della Politica sulla Privacy https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md
Lingue Supportate 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"
            ]
        }
    ]
}