ShadowDork
Integrates ShadowDork with Roll20
ShadowDorkとは何ですか?
ShadowDorkはcontactによって開発されたChromeの拡張機能で、その主な機能は「Integrates ShadowDork with Roll20」です。
拡張機能のスクリーンショット
ShadowDork拡張機能のCRXファイルをダウンロード
ShadowDork拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } ] } |