EncounterBeyond
A simple extension to send digital rolls from D&D Beyond to EncounterPlus
什麼是EncounterBeyond?
EncounterBeyond是由Robert R George開發的Chrome擴展程式,該擴展的主要功能是“A simple extension to send digital rolls from D&D Beyond to EncounterPlus”。
擴展截圖
下載EncounterBeyond擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |