ShadowDork
Integrates ShadowDork with Roll20
ShadowDork란 무엇입니까?
ShadowDork은(는) contact에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Integrates ShadowDork with Roll20"입니다.
확장 프로그램 스크린샷
ShadowDork 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The ShadowDork Extension is a tool designed to elevate your Shadowdark gaming experience on Roll20. Created by the developer behind ShadowDork.com, this extension is designed to streamline your gameplay by seamlessly connecting your ShadowDork.com character sheet with the Roll20 virtual tabletop platform. Through a simple and non-intrusive interface, it allows you to share your characters' dice rolls and spell details directly in the chat window of your Roll20 session. The extension operates by capturing events from your ShadowDork character sheet and transmitting them to any Roll20 browser tabs. A Roll20 account is currently required for use. Looking ahead, potential future updates could broaden the compatibility with other platforms and Shadowdark tools. One feature of the ShadowDork Extension is that it doesn't handle or store any user data, focusing solely on the transmission of game-related events from one browser tab to another. For any inquiries or support, you can reach out directly to me, the developer, at [email protected]. Give the ShadowDork Extension a try and enjoy a seamless transition of your Shadowdark character actions on Roll20. I'm here to support your gameplay, making every roll count.
확장 프로그램 기본 정보
이름 | ShadowDork |
ID | hnencfhlpminppacfkeinmdggmbbjmhi |
공식 URL | https://chromewebstore.google.com/detail/shadowdork/hnencfhlpminppacfkeinmdggmbbjmhi |
설명 | Integrates ShadowDork with Roll20 |
파일 크기 | 12.48 KB |
설치 횟수 | 76 |
현재 버전 | 1.4 |
최근 업데이트 | 2023-10-01 |
출시 날짜 | 2023-08-13 |
개발자 | contact |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.shadowdork.com/ |
도움말 페이지 URL | https://www.shadowdork.com/about-component |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ShadowDork", "description": "Integrates ShadowDork with Roll20", "permissions": [ "tabs" ], "background": { "service_worker": "background.js", "type": "module" }, "icons": { "128": "icon128.png" }, "version": "1.4", "content_scripts": [ { "matches": [ "*:\/\/*.shadowdork.com\/*", "*:\/\/d1ismx4b1gytzx.cloudfront.net\/*" ], "js": [ "shadowdork.js" ], "all_frames": true }, { "matches": [ "*:\/\/app.roll20.net\/editor\/" ], "js": [ "roll20.js" ], "all_frames": true } ] } |