Beyond The Forge

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

Apa itu Beyond The Forge?

Beyond The Forge adalah ekstensi Chrome yang dikembangkan oleh https://forge-vtt.com, dan fitur utamanya adalah "Integrate D&D Beyond with The Forge's Bazaar.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Beyond The Forge

Unduh file ekstensi Beyond The Forge dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Beyond The Forge Beyond The Forge
ID cfjlogdnkgmokpoenibjicddbabfkfid
URL Resmi https://chromewebstore.google.com/detail/beyond-the-forge/cfjlogdnkgmokpoenibjicddbabfkfid
Deskripsi Integrate D&D Beyond with The Forge's Bazaar.
Ukuran File 149 KB
Jumlah Instalasi 5,135
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2022-12-19
Tanggal Publikasi 2021-08-10
Pengembang https://forge-vtt.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://forge-vtt.com/
URL Halaman Bantuan https://forums.forge-vtt.com/t/d-d-beyond-integration/13331
Bahasa yang Didukung 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"
            ]
        }
    ]
}