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