Roll20: Click & Roll

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

Roll20: Click & Roll là gì?

Roll20: Click & Roll là một tiện ích mở rộng Chrome được phát triển bởi PHP it | Martijn Wieringa, và tính năng chính của nó là "A Click & Roll tool for D&D5e players on Roll20.net".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Roll20: Click & Roll

Tải xuống các tệp mở rộng Roll20: Click & Roll dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Roll20: Click & Roll Roll20: Click & Roll
ID mohhillnhaheggkkjjmblipbehejpoba
URL Chính Thức https://chromewebstore.google.com/detail/roll20-click-roll/mohhillnhaheggkkjjmblipbehejpoba
Mô tả A Click & Roll tool for D&D5e players on Roll20.net
Kích Thước Tệp 102 KB
Số Lần Cài Đặt 9,561
Phiên Bản Hiện Tại 0.3.1
Cập Nhật Lần Cuối 2020-06-05
Ngày Phát Hành 2020-06-04
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển PHP it | Martijn Wieringa
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.php-it.nl/tools/click-and-roll/
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}