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”。

扩展截图

screenshot

下载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 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"
            ]
        }
    ]
}