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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
URL страницы помощи | https://github.com/rrgeorge/EncounterBeyond |
URL страницы политики конфиденциальности | 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" ] } ] } |