Beyond Discord
An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
Qu'est-ce que Beyond Discord ?
Beyond Discord est une extension Chrome développée par Olian04, et sa fonction principale est "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Beyond Discord
Téléchargez les fichiers d'extension Beyond Discord au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ljkjmgadfjdjamnnbeeohakojjcmfpka |
URL Officiel | 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 |
Taille du Fichier | 82.97 KB |
Nombre d'Installations | 297 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2022-04-03 |
Date de Publication | 2020-12-12 |
Évaluation | 3.00/5 Total 3 Évaluations |
Développeur | Olian04 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Olian04/dnd-beyond-to-discord |
URL de la Page d'Aide | https://github.com/Olian04/dnd-beyond-to-discord/issues |
Langues Prises en Charge | 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" ] } ] } |