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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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" ] } ] } |