Beyond Discord

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

Beyond Discord क्या है?

Beyond Discord Olian04 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Beyond Discord एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}