EncounterBeyond
A simple extension to send digital rolls from D&D Beyond to EncounterPlus
Co je EncounterBeyond?
EncounterBeyond je rozšíření Chrome vyvinuté Robert R George, a jeho hlavní funkcí je „A simple extension to send digital rolls from D&D Beyond to EncounterPlus“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření EncounterBeyond
Stáhněte si soubory rozšíření EncounterBeyond ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | EncounterBeyond |
ID | gnbkcgljobchhhmonolgielhfgpphmej |
Oficiální URL | https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej |
Popis | A simple extension to send digital rolls from D&D Beyond to EncounterPlus |
Velikost souboru | 20.22 KB |
Počet instalací | 635 |
Aktuální Verze | 0.8 |
Poslední Aktualizace | 2022-06-23 |
Datum Vydání | 2020-07-18 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Robert R George |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/rrgeorge/EncounterBeyond |
URL Stránky Nápovědy | https://github.com/rrgeorge/EncounterBeyond |
URL Stránky Zásad Ochrany Soukromí | https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md |
Podporované Jazyky | 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" ] } ] } |