ShadowDork

Integrates ShadowDork with Roll20

ShadowDorkคืออะไร?

ShadowDork เป็นส่วนขยายของ Chrome ที่พัฒนาโดย contact และคุณลักษณะหลักของมันคือ "Integrates ShadowDork with Roll20"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ShadowDork

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
        }
    ]
}