Roll20: Click & Roll

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

Roll20: Click & Rollคืออะไร?

Roll20: Click & Roll เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PHP it | Martijn Wieringa และคุณลักษณะหลักของมันคือ "A Click & Roll tool for D&D5e players on Roll20.net"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Roll20: Click & Roll

ดาวน์โหลดไฟล์ส่วนขยาย 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\/"
    ]
}