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.".
Снимки экрана расширения
Скачать файл 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 |
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" ] } ] } |