EncounterBeyond
A simple extension to send digital rolls from D&D Beyond to EncounterPlus
Was ist EncounterBeyond?
EncounterBeyond ist eine Chrome-Erweiterung, die von Robert R George entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension to send digital rolls from D&D Beyond to EncounterPlus".
Erweiterungsscreenshots
EncounterBeyond-Erweiterungs-CRX-Datei herunterladen
Laden Sie EncounterBeyond-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | EncounterBeyond |
ID | gnbkcgljobchhhmonolgielhfgpphmej |
Offizielle URL | https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej |
Beschreibung | A simple extension to send digital rolls from D&D Beyond to EncounterPlus |
Dateigröße | 20.22 KB |
Installationsanzahl | 635 |
Aktuelle Version | 0.8 |
Letztes Update | 2022-06-23 |
Veröffentlichungsdatum | 2020-07-18 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Robert R George |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/rrgeorge/EncounterBeyond |
Hilfeseite URL | https://github.com/rrgeorge/EncounterBeyond |
URL der Datenschutzrichtlinien-Seite | https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md |
Unterstützte Sprachen | 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" ] } ] } |