Beyond The Forge
Integrate D&D Beyond with The Forge's Bazaar.
Co to jest Beyond The Forge?
Beyond The Forge to rozszerzenie Chrome opracowane przez https://forge-vtt.com, a jego główną funkcją jest „Integrate D&D Beyond with The Forge's Bazaar.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Beyond The Forge
Pobierz pliki rozszerzeń Beyond The Forge w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Beyond The Forge |
ID | cfjlogdnkgmokpoenibjicddbabfkfid |
Oficjalny URL | https://chromewebstore.google.com/detail/beyond-the-forge/cfjlogdnkgmokpoenibjicddbabfkfid |
Opis | Integrate D&D Beyond with The Forge's Bazaar. |
Rozmiar pliku | 149 KB |
Liczba instalacji | 5,135 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2022-12-19 |
Data Publikacji | 2021-08-10 |
Deweloper | https://forge-vtt.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://forge-vtt.com/ |
Adres URL Strony Pomocy | https://forums.forge-vtt.com/t/d-d-beyond-integration/13331 |
Obsługiwane Języki | 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" ] } ] } |