Beyond The Forge

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

Cos'è Beyond The Forge?

Beyond The Forge è un'estensione di Chrome sviluppata da https://forge-vtt.com, e la sua funzione principale è "Integrate D&D Beyond with The Forge's Bazaar.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Beyond The Forge

Scarica i file di estensione Beyond The Forge in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Beyond The Forge Beyond The Forge
ID cfjlogdnkgmokpoenibjicddbabfkfid
URL Ufficiale https://chromewebstore.google.com/detail/beyond-the-forge/cfjlogdnkgmokpoenibjicddbabfkfid
Descrizione Integrate D&D Beyond with The Forge's Bazaar.
Dimensione del File 149 KB
Conteggio Installazioni 5,135
Versione Corrente 1.0.3
Ultimo Aggiornamento 2022-12-19
Data di Pubblicazione 2021-08-10
Sviluppatore https://forge-vtt.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://forge-vtt.com/
URL della Pagina di Aiuto https://forums.forge-vtt.com/t/d-d-beyond-integration/13331
Lingue Supportate 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"
            ]
        }
    ]
}