EncounterBeyond
A simple extension to send digital rolls from D&D Beyond to EncounterPlus
EncounterBeyond là gì?
EncounterBeyond là một tiện ích mở rộng Chrome được phát triển bởi Robert R George, và tính năng chính của nó là "A simple extension to send digital rolls from D&D Beyond to EncounterPlus".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng EncounterBeyond
Tải xuống các tệp mở rộng EncounterBeyond dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | EncounterBeyond |
ID | gnbkcgljobchhhmonolgielhfgpphmej |
URL Chính Thức | https://chromewebstore.google.com/detail/encounterbeyond/gnbkcgljobchhhmonolgielhfgpphmej |
Mô tả | A simple extension to send digital rolls from D&D Beyond to EncounterPlus |
Kích Thước Tệp | 20.22 KB |
Số Lần Cài Đặt | 635 |
Phiên Bản Hiện Tại | 0.8 |
Cập Nhật Lần Cuối | 2022-06-23 |
Ngày Phát Hành | 2020-07-18 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Robert R George |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rrgeorge/EncounterBeyond |
URL Trang Trợ Giúp | https://github.com/rrgeorge/EncounterBeyond |
URL Trang Chính Sách Bảo Mật | https://github.com/rrgeorge/EncounterBeyond/blob/master/privacypolicy.md |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |