RollShare

Share your D&D dice rolls online

Qu'est-ce que RollShare ?

RollShare est une extension Chrome développée par Jonathan Berling, et sa fonction principale est "Share your D&D dice rolls online".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension RollShare

Téléchargez les fichiers d'extension RollShare au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom RollShare RollShare
ID amendmkcdpkapnbilciacnpdmaonnlmh
URL Officiel https://chromewebstore.google.com/detail/rollshare/amendmkcdpkapnbilciacnpdmaonnlmh
Description Share your D&D dice rolls online
Taille du Fichier 15.08 KB
Nombre d'Installations 54
Version Actuelle 1.0
Dernière Mise à Jour 2020-07-08
Date de Publication 2020-07-08
Développeur Jonathan Berling
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jonberling/RollShare
Langues Prises en Charge 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"
    }
}