Beyond The Forge
Integrate D&D Beyond with The Forge's Bazaar.
Beyond The Forge là gì?
Beyond The Forge là một tiện ích mở rộng Chrome được phát triển bởi https://forge-vtt.com, và tính năng chính của nó là "Integrate D&D Beyond with The Forge's Bazaar.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Beyond The Forge
Tải xuống các tệp mở rộng Beyond The Forge dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Beyond The Forge |
ID | cfjlogdnkgmokpoenibjicddbabfkfid |
URL Chính Thức | https://chromewebstore.google.com/detail/beyond-the-forge/cfjlogdnkgmokpoenibjicddbabfkfid |
Mô tả | Integrate D&D Beyond with The Forge's Bazaar. |
Kích Thước Tệp | 149 KB |
Số Lần Cài Đặt | 5,135 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2022-12-19 |
Ngày Phát Hành | 2021-08-10 |
Nhà Phát Triển | https://forge-vtt.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://forge-vtt.com/ |
URL Trang Trợ Giúp | https://forums.forge-vtt.com/t/d-d-beyond-integration/13331 |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |