Beyond Discord
An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
Was ist Beyond Discord?
Beyond Discord ist eine Chrome-Erweiterung, die von Olian04 entwickelt wurde, und ihr Hauptmerkmal ist "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks".
Erweiterungsscreenshots
Beyond Discord-Erweiterungs-CRX-Datei herunterladen
Laden Sie Beyond Discord-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ljkjmgadfjdjamnnbeeohakojjcmfpka |
Offizielle URL | https://chrome.google.com/webstore/detail/beyond-discord/ljkjmgadfjdjamnnbeeohakojjcmfpka |
Beschreibung | An extension that sends dice roll results from D&D-Beyond to Discord using webhooks |
Dateigröße | 82.97 KB |
Installationsanzahl | 297 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2022-04-03 |
Veröffentlichungsdatum | 2020-12-12 |
Bewertung | 3.00/5 Insgesamt 3 Bewertungen |
Entwickler | Olian04 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Olian04/dnd-beyond-to-discord |
Hilfeseite URL | https://github.com/Olian04/dnd-beyond-to-discord/issues |
Unterstützte Sprachen | 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" ] } ] } |