Beyond The Forge

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

Beyond The Forgeคืออะไร?

Beyond The Forge เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://forge-vtt.com และคุณลักษณะหลักของมันคือ "Integrate D&D Beyond with The Forge's Bazaar."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Beyond The Forge

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}