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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |