Beyond Discord
An extension that sends dice roll results from D&D-Beyond to Discord using webhooks
什么是Beyond Discord?
Beyond Discord是由Olian04开发的Chrome扩展程序,该扩展的主要功能是“An extension that sends dice roll results from D&D-Beyond to Discord using webhooks”。
扩展截图
下载Beyond Discord扩展crx文件
下载Beyond Discord扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
帮助页面URL | 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" ] } ] } |