Beyond The Forge
Integrate D&D Beyond with The Forge's Bazaar.
什麼是Beyond The Forge?
Beyond The Forge是由https://forge-vtt.com開發的Chrome擴展程式,該擴展的主要功能是“Integrate D&D Beyond with The Forge's Bazaar.”。
擴展截圖
下載Beyond The Forge擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |