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
官方網址 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\/"
    ]
}