RollShare

Share your D&D dice rolls online

RollShare क्या है?

RollShare Jonathan Berling द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Share your D&D dice rolls online"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RollShare एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम RollShare RollShare
ID amendmkcdpkapnbilciacnpdmaonnlmh
आधिकारिक URL https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh
विवरण Share your D&D dice rolls online
फ़ाइल का आकार 15.08 KB
स्थापना संख्या 54
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-07-08
प्रकाशन तिथि 2020-07-08
डेवलपर Jonathan Berling
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jonberling/RollShare
समर्थित भाषाएँ 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"
    }
}