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 |
公式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 |
Eメール | [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" ] } ] } |