RollShare

Share your D&D dice rolls online

RollShareคืออะไร?

RollShare เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jonathan Berling และคุณลักษณะหลักของมันคือ "Share your D&D dice rolls online"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RollShare

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}