Beyond Discord

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

What is Beyond Discord?

Beyond Discord is a Chrome extension developed by Olian04, and its main feature is "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks".

Extension Screenshots

screenshot

Download Beyond Discord Extension CRX File

Download Beyond Discord extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Beyond Discord Beyond Discord
ID ljkjmgadfjdjamnnbeeohakojjcmfpka
Official URL https://chrome.google.com/webstore/detail/beyond-discord/ljkjmgadfjdjamnnbeeohakojjcmfpka
Description An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
File Size 82.97 KB
Installation Count 297
Current Version 1.2.1
Last Updated 2022-04-03
Publish Date 2020-12-12
Rating 3.00/5 Total 3 Ratings
Developer Olian04
Email [email protected]
Payment Type free
Extension Website https://github.com/Olian04/dnd-beyond-to-discord
Help Page URL https://github.com/Olian04/dnd-beyond-to-discord/issues
Supported Languages 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"
            ]
        }
    ]
}