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
官方網址 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"
    }
}