EncounterBeyond
A simple extension to send digital rolls from D&D Beyond to EncounterPlus
What is EncounterBeyond?
EncounterBeyond is a Chrome extension developed by Robert R George, and its main feature is "A simple extension to send digital rolls from D&D Beyond to EncounterPlus".
Extension Screenshots
Download EncounterBeyond Extension CRX File
Download EncounterBeyond extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | gnbkcgljobchhhmonolgielhfgpphmej |
| Official URL | https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej |
| Description | A simple extension to send digital rolls from D&D Beyond to EncounterPlus |
| File Size | 20.22 KB |
| Installation Count | 635 |
| Current Version | 0.8 |
| Last Updated | 2022-06-23 |
| Publish Date | 2020-07-18 |
| Rating | 5.00/5 Total 3 Ratings |
| Developer | Robert R George |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://github.com/rrgeorge/EncounterBeyond |
| Help Page URL | https://github.com/rrgeorge/EncounterBeyond |
| Privacy Policy Page URL | https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md |
| Supported Languages | 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"
]
}
]
} | |