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」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 Beyond Discord Beyond Discord
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
Eメール [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"
            ]
        }
    ]
}