Beyond Discord
An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
Cos'è Beyond Discord?
Beyond Discord è un'estensione di Chrome sviluppata da Olian04, e la sua funzione principale è "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Beyond Discord
Scarica i file di estensione Beyond Discord in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | ljkjmgadfjdjamnnbeeohakojjcmfpka |
URL Ufficiale | https://chrome.google.com/webstore/detail/beyond-discord/ljkjmgadfjdjamnnbeeohakojjcmfpka |
Descrizione | An extension that sends dice roll results from D&D-Beyond to Discord using webhooks |
Dimensione del File | 82.97 KB |
Conteggio Installazioni | 297 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2022-04-03 |
Data di Pubblicazione | 2020-12-12 |
Valutazione | 3.00/5 Totale 3 Valutazioni |
Sviluppatore | Olian04 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Olian04/dnd-beyond-to-discord |
URL della Pagina di Aiuto | https://github.com/Olian04/dnd-beyond-to-discord/issues |
Lingue Supportate | 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" ] } ] } |