Beyond The Forge
Integrate D&D Beyond with The Forge's Bazaar.
Was ist Beyond The Forge?
Beyond The Forge ist eine Chrome-Erweiterung, die von https://forge-vtt.com entwickelt wurde, und ihr Hauptmerkmal ist "Integrate D&D Beyond with The Forge's Bazaar.".
Erweiterungsscreenshots
Beyond The Forge-Erweiterungs-CRX-Datei herunterladen
Laden Sie Beyond The Forge-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Beyond The Forge |
ID | cfjlogdnkgmokpoenibjicddbabfkfid |
Offizielle URL | https://chromewebstore.google.com/detail/beyond-the-forge/cfjlogdnkgmokpoenibjicddbabfkfid |
Beschreibung | Integrate D&D Beyond with The Forge's Bazaar. |
Dateigröße | 149 KB |
Installationsanzahl | 5,135 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2022-12-19 |
Veröffentlichungsdatum | 2021-08-10 |
Entwickler | https://forge-vtt.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://forge-vtt.com/ |
Hilfeseite URL | https://forums.forge-vtt.com/t/d-d-beyond-integration/13331 |
Unterstützte Sprachen | 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" ] } ] } |