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".
Снимки экрана расширения
Скачать файл 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.
Основная информация о расширении
Название | |
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" ] } ] } |