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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 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
이메일 [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"
            ]
        }
    ]
}