Beyond The Forge

Integrate D&D Beyond with The Forge's Bazaar.

什么是Beyond The Forge?

Beyond The Forge是由https://forge-vtt.com开发的Chrome扩展程序,该扩展的主要功能是“Integrate D&D Beyond with The Forge's Bazaar.”。

扩展截图

screenshot

下载Beyond The Forge扩展crx文件

下载Beyond The Forge扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension allows you to integrate D&D Beyond's marketplace, its source adventures with The Forge's Bazaar.
This would allow Forge users to import adventures and rule books into their Foundry games hosted on The Forge.

Check out the Forge for more details : https://forge-vtt.com/bazaar                    

扩展基本信息

名称 Beyond The Forge Beyond The Forge
ID cfjlogdnkgmokpoenibjicddbabfkfid
官方URL https://chromewebstore.google.com/detail/beyond-the-forge/cfjlogdnkgmokpoenibjicddbabfkfid
简介 Integrate D&D Beyond with The Forge's Bazaar.
文件大小 149 KB
安装次数 5,135
当前版本 1.0.3
更新时间 2022-12-19
上架时间 2021-08-10
开发者 https://forge-vtt.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://forge-vtt.com/
帮助页面URL https://forums.forge-vtt.com/t/d-d-beyond-integration/13331
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beyond The Forge",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Integrate D&D Beyond with The Forge's Bazaar.",
    "permissions": [
        "cookies",
        "*:\/\/*.dndbeyond.com\/*",
        "*:\/\/*.forge-vtt.com\/"
    ],
    "icons": {
        "32": "images\/icon32.png",
        "72": "images\/icon72.png",
        "512": "images\/icon512.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.dndbeyond.com\/*"
            ],
            "css": [
                "libs\/css\/alertify.css",
                "libs\/css\/alertify-themes\/default.css"
            ],
            "js": [
                "libs\/alertify.min.js",
                "src\/dndbeyond.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.forge-vtt.com\/*"
            ],
            "js": [
                "src\/forge.js"
            ]
        }
    ]
}