Beyond Discord
An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
Beyond Discord là gì?
Beyond Discord là một tiện ích mở rộng Chrome được phát triển bởi Olian04, và tính năng chính của nó là "An extension that sends dice roll results from D&D-Beyond to Discord using webhooks".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Beyond Discord
Tải xuống các tệp mở rộng Beyond Discord dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ljkjmgadfjdjamnnbeeohakojjcmfpka |
URL Chính Thức | https://chrome.google.com/webstore/detail/beyond-discord/ljkjmgadfjdjamnnbeeohakojjcmfpka |
Mô tả | An extension that sends dice roll results from D&D-Beyond to Discord using webhooks |
Kích Thước Tệp | 82.97 KB |
Số Lần Cài Đặt | 297 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2022-04-03 |
Ngày Phát Hành | 2020-12-12 |
Đánh Giá | 3.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Olian04 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Olian04/dnd-beyond-to-discord |
URL Trang Trợ Giúp | https://github.com/Olian04/dnd-beyond-to-discord/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |