RollShare

Share your D&D dice rolls online

RollShareとは何ですか?

RollShareはJonathan Berlingによって開発されたChromeの拡張機能で、その主な機能は「Share your D&D dice rolls online」です。

拡張機能のスクリーンショット

screenshot
screenshot

RollShare拡張機能のCRXファイルをダウンロード

RollShare拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}