VTT Bridge

Connect Dungeon Master's Vault to Roll20.

Τι είναι το VTT Bridge;

Το VTT Bridge είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον averycrespi.developer, και η κύρια λειτουργία του είναι "Connect Dungeon Master's Vault to Roll20.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης VTT Bridge

Λήψη αρχείων επέκτασης VTT Bridge σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
        ]
    }
}