Roll20: Click & Roll

A Click & Roll tool for D&D5e players on Roll20.net

什么是Roll20: Click & Roll?

Roll20: Click & Roll是由PHP it | Martijn Wieringa开发的Chrome扩展程序,该扩展的主要功能是“A Click & Roll tool for D&D5e players on Roll20.net”。

扩展截图

screenshot

下载Roll20: Click & Roll扩展crx文件

下载Roll20: Click & Roll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension provides Roll20 Players with a simple push-a-button system to roll the proper dice for their character!
You have easy access to roll for ability checks, ability saves, skill checks, attack rolls, damage rolls, spells, and other custom rolls.
You can also import a DNDBeyond character with a single click.

More features will be added in future releases                    

扩展基本信息

名称 Roll20: Click & Roll Roll20: Click & Roll
ID mohhillnhaheggkkjjmblipbehejpoba
官方URL https://chromewebstore.google.com/detail/roll20-click-roll/mohhillnhaheggkkjjmblipbehejpoba
简介 A Click & Roll tool for D&D5e players on Roll20.net
文件大小 102 KB
安装次数 9,561
当前版本 0.3.1
更新时间 2020-06-05
上架时间 2020-06-04
评分 4.75/5 共4次评分
开发者 PHP it | Martijn Wieringa
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.php-it.nl/tools/click-and-roll/
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Roll20: Click & Roll",
    "version": "0.3.1",
    "manifest_version": 2,
    "description": "A Click & Roll tool for D&D5e players on Roll20.net",
    "icons": {
        "128": "roll20-icon.png"
    },
    "page_action": {
        "default_icon": "roll20-icon.png",
        "default_popup": "popup.html",
        "default_title": "Roll20: Click & Roll"
    },
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.roll20.net\/*",
                "https:\/\/www.roll20.net\/*"
            ],
            "js": [
                "utils.js",
                "jquery-3.5.0.min.js",
                "roll20.js",
                "configuration.js"
            ],
            "css": [
                "roll20.css",
                "configuration.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/*"
            ],
            "js": [
                "utils.js",
                "jquery-3.5.0.min.js",
                "dndbeyond.js",
                "configuration.js"
            ],
            "css": [
                "dndbeyond.css",
                "configuration.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/app.roll20.net\/",
        "https:\/\/www.roll20.net\/",
        "https:\/\/www.dndbeyond.com\/"
    ]
}