EncounterBeyond
A simple extension to send digital rolls from D&D Beyond to EncounterPlus
Qu'est-ce que EncounterBeyond ?
EncounterBeyond est une extension Chrome développée par Robert R George, et sa fonction principale est "A simple extension to send digital rolls from D&D Beyond to EncounterPlus".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension EncounterBeyond
Téléchargez les fichiers d'extension EncounterBeyond au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | EncounterBeyond |
ID | gnbkcgljobchhhmonolgielhfgpphmej |
URL Officiel | https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej |
Description | A simple extension to send digital rolls from D&D Beyond to EncounterPlus |
Taille du Fichier | 20.22 KB |
Nombre d'Installations | 635 |
Version Actuelle | 0.8 |
Dernière Mise à Jour | 2022-06-23 |
Date de Publication | 2020-07-18 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Robert R George |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/rrgeorge/EncounterBeyond |
URL de la Page d'Aide | https://github.com/rrgeorge/EncounterBeyond |
URL de la Page de Politique de Confidentialité | https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md |
Langues Prises en Charge | 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" ] } ] } |