EncounterBeyond
A simple extension to send digital rolls from D&D Beyond to EncounterPlus
ما هو EncounterBeyond؟
EncounterBeyond هو إضافة Chrome تم تطويرها بواسطة Robert R George، والميزة الرئيسية لها هي "A simple extension to send digital rolls from D&D Beyond to EncounterPlus".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة EncounterBeyond
قم بتنزيل ملفات الامتداد EncounterBeyond بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | EncounterBeyond |
ID | gnbkcgljobchhhmonolgielhfgpphmej |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej |
الوصف | A simple extension to send digital rolls from D&D Beyond to EncounterPlus |
حجم الملف | 20.22 KB |
عدد التثبيتات | 635 |
النسخة الحالية | 0.8 |
آخر تحديث | 2022-06-23 |
تاريخ النشر | 2020-07-18 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | Robert R George |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/rrgeorge/EncounterBeyond |
عنوان صفحة المساعدة | https://github.com/rrgeorge/EncounterBeyond |
عنوان صفحة سياسة الخصوصية | https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md |
اللغات المدعومة | 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" ] } ] } |