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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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