Beyond Discord
An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
Hvad er Beyond Discord?
Beyond Discord er en Chrome-udvidelse udviklet af Olian04, og dens hovedfunktion er "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks".
Udvidelsesskærmbilleder
Download Beyond Discord-udvidelses-CRX-fil
Download Beyond Discord-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | ljkjmgadfjdjamnnbeeohakojjcmfpka |
Officiel URL | https://chrome.google.com/webstore/detail/beyond-discord/ljkjmgadfjdjamnnbeeohakojjcmfpka |
Beskrivelse | An extension that sends dice roll results from D&D-Beyond to Discord using webhooks |
Filstørrelse | 82.97 KB |
Antal Installationer | 297 |
Nuværende Version | 1.2.1 |
Senest Opdateret | 2022-04-03 |
Udgivelsesdato | 2020-12-12 |
Bedømmelse | 3.00/5 Samlet 3 Bedømmelser |
Udvikler | Olian04 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Olian04/dnd-beyond-to-discord |
Hjælpeside-URL | https://github.com/Olian04/dnd-beyond-to-discord/issues |
Understøttede Sprog | 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" ] } ] } |