VTT Bridge
Connect Dungeon Master's Vault to Roll20.
VTT Bridge란 무엇입니까?
VTT Bridge은(는) averycrespi.developer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Connect Dungeon Master's Vault to Roll20."입니다.
확장 프로그램 스크린샷
VTT Bridge 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you play D&D on Roll20, but prefer to manage your characters with Dungeon Master's Vault? VTT Bridge seamlessly connects your Dungeon Master's Vault character sheet to your Roll20 game. Key Features - Roll ability checks, attack with weapons, cast spells, and more! - Ctrl-Click to roll with advantage and Shift-Click to roll with disadvantage. - Switch between visible commands (that everyone can see) and hidden commands (that only you and the GM can see). For more information, please visit the GitHub repository at https://github.com/averycrespi/vtt-bridge Disclaimer The use of this tool is meant for use for your own campaigns. It is only meant and should only be used on campaigns with content that you legally possess. The use of this tool may violate the Roll20 Marketplace Asset EULA or the Roll20 Terms of Service. This tool is not affiliated with Dungeon Master's Vault, Roll20, or Wizards of the Coast.
확장 프로그램 기본 정보
이름 | VTT Bridge |
ID | fadncbccmelchegmlghbhpjchdmghmhh |
공식 URL | https://chromewebstore.google.com/detail/vtt-bridge/fadncbccmelchegmlghbhpjchdmghmhh |
설명 | Connect Dungeon Master's Vault to Roll20. |
파일 크기 | 208 KB |
설치 횟수 | 1,410 |
현재 버전 | 1.6.3 |
최근 업데이트 | 2021-09-12 |
출시 날짜 | 2020-06-25 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | averycrespi.developer |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/averycrespi/vtt-bridge |
도움말 페이지 URL | https://github.com/averycrespi/vtt-bridge/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VTT Bridge", "version": "1.6.3", "description": "Connect Dungeon Master's Vault to Roll20.", "icons": { "48": "icons\/48.png", "96": "icons\/96.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.dungeonmastersvault.com\/pages\/dnd\/5e\/characters\/*?frame=true" ], "js": [ "dist\/polyfill.js", "dist\/dmv.js" ], "css": [ "dist\/dmv.css" ] }, { "matches": [ "*:\/\/app.roll20.net\/editor*" ], "js": [ "dist\/polyfill.js", "dist\/roll20.js" ], "css": [ "dist\/roll20.css" ] } ], "background": { "scripts": [ "dist\/polyfill.js", "dist\/background.js" ] } } |