VTT Bridge

Connect Dungeon Master's Vault to Roll20.

VTT Bridge क्या है?

VTT Bridge averycrespi.developer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Connect Dungeon Master's Vault to Roll20."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में VTT Bridge एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
        ]
    }
}