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 |
官方網址 | 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" ] } ] } |