Beyond Discord

An extension that sends dice roll results from D&D-Beyond to Discord using webhooks

Beyond Discordคืออะไร?

Beyond Discord เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Olian04 และคุณลักษณะหลักของมันคือ "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Beyond Discord ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        An extension that sends dice roll results from D&D-Beyond to Discord using webhooks.

Usage:
Step 1. Navigate to one of your dnd-beyond characters.
Step 2. Click on the extension icon.
Step 3. Click on "Configure". This will open the options page for the extension.
Step 4. Follow the steps on screen to generate a webhook (in discord), and paste the webhook URL in the given input field.
Step 5. Use dnd-beyond as normal. Any rolls made on the page will now be sent to discord using the provided webhook.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Beyond Discord Beyond Discord
ID ljkjmgadfjdjamnnbeeohakojjcmfpka
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/beyond-discord/ljkjmgadfjdjamnnbeeohakojjcmfpka
คำอธิบาย An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
ขนาดไฟล์ 82.97 KB
จำนวนการติดตั้ง 297
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2022-04-03
วันที่เผยแพร่ 2020-12-12
คะแนน 3.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Olian04
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Olian04/dnd-beyond-to-discord
URL หน้าช่วยเหลือ https://github.com/Olian04/dnd-beyond-to-discord/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Beyond Discord",
    "version": "1.2.1",
    "description": "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks",
    "author": "Olian04",
    "permissions": [
        "storage",
        "https:\/\/discord.com\/api\/webhooks\/*"
    ],
    "icons": {
        "512": ".\/icons\/512.png",
        "128": ".\/icons\/128.png"
    },
    "action": {
        "default_icon": {
            "512": ".\/icons\/512.png",
            "128": ".\/icons\/128.png"
        },
        "default_title": "Configure BeyondDiscord",
        "default_popup": ".\/popup.html"
    },
    "options_ui": {
        "page": ".\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/characters\/*"
            ],
            "js": [
                ".\/js\/content.js"
            ]
        }
    ]
}