RollShare

Share your D&D dice rolls online

Apa itu RollShare?

RollShare adalah ekstensi Chrome yang dikembangkan oleh Jonathan Berling, dan fitur utamanya adalah "Share your D&D dice rolls online".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi RollShare

Unduh file ekstensi RollShare dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama RollShare RollShare
ID amendmkcdpkapnbilciacnpdmaonnlmh
URL Resmi https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh
Deskripsi Share your D&D dice rolls online
Ukuran File 15.08 KB
Jumlah Instalasi 54
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-07-08
Tanggal Publikasi 2020-07-08
Pengembang Jonathan Berling
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/jonberling/RollShare
Bahasa yang Didukung 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"
    }
}