RollShare

Share your D&D dice rolls online

RollShare là gì?

RollShare là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Berling, và tính năng chính của nó là "Share your D&D dice rolls online".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng RollShare

Tải xuống các tệp mở rộng RollShare 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

                        Automatically share any dice rolls on D&D Beyond with your Roll20 game.

This extension detects when you roll the dice on your D&D Beyond character sheet, and shares the roll on Roll20 using their roll template.

Using it is easy, just have both a D&D Beyond character sheet open, and a Roll20 game open.                    

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

Tên RollShare RollShare
ID amendmkcdpkapnbilciacnpdmaonnlmh
URL Chính Thức https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh
Mô tả Share your D&D dice rolls online
Kích Thước Tệp 15.08 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-07-08
Ngày Phát Hành 2020-07-08
Nhà Phát Triển Jonathan Berling
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jonberling/RollShare
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RollShare",
    "version": "1.0",
    "description": "Share your D&D dice rolls online",
    "manifest_version": 2,
    "icons": {
        "128": "icon\/RollShareIcon.png"
    },
    "permissions": [
        "*:\/\/www.dndbeyond.com\/profile\/*\/characters\/*",
        "*:\/\/app.roll20.net\/editor\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.dndbeyond.com\/profile\/*\/characters\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "src\/ddb_roll_send.js"
            ]
        },
        {
            "matches": [
                "*:\/\/app.roll20.net\/editor\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "src\/r20_roll_receive.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_title": "RollShare"
    }
}