VTT Bridge

Connect Dungeon Master's Vault to Roll20.

O que é VTT Bridge?

VTT Bridge é uma extensão do Chrome desenvolvida por averycrespi.developer, e sua principal característica é "Connect Dungeon Master's Vault to Roll20.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão VTT Bridge

Baixe arquivos de extensão VTT Bridge no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome VTT Bridge VTT Bridge
ID fadncbccmelchegmlghbhpjchdmghmhh
URL Oficial https://chromewebstore.google.com/detail/vtt-bridge/fadncbccmelchegmlghbhpjchdmghmhh
Descrição Connect Dungeon Master's Vault to Roll20.
Tamanho do Arquivo 208 KB
Contagem de Instalações 1,410
Versão Atual 1.6.3
Última Atualização 2021-09-12
Data de Publicação 2020-06-25
Classificação 4.50/5 Total de 4 Avaliações
Desenvolvedor averycrespi.developer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/averycrespi/vtt-bridge
URL da Página de Ajuda https://github.com/averycrespi/vtt-bridge/issues
Idiomas Suportados 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"
        ]
    }
}