Beyond Discord

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

Co to jest Beyond Discord?

Beyond Discord to rozszerzenie Chrome opracowane przez Olian04, a jego główną funkcją jest „An extension that sends dice roll results from D&D-Beyond to Discord using webhooks”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Beyond Discord

Pobierz pliki rozszerzeń Beyond Discord w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Beyond Discord Beyond Discord
ID ljkjmgadfjdjamnnbeeohakojjcmfpka
Oficjalny URL https://chrome.google.com/webstore/detail/beyond-discord/ljkjmgadfjdjamnnbeeohakojjcmfpka
Opis An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
Rozmiar pliku 82.97 KB
Liczba instalacji 297
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2022-04-03
Data Publikacji 2020-12-12
Ocena 3.00/5 Łącznie 3 Oceny
Deweloper Olian04
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Olian04/dnd-beyond-to-discord
Adres URL Strony Pomocy https://github.com/Olian04/dnd-beyond-to-discord/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}