Beyond RNG

Randomiser for DNDBeyond

Beyond RNG란 무엇입니까?

Beyond RNG은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Randomiser for DNDBeyond"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Beyond RNG 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Allows random items to be selected from any list page within DNDbeyond. It works with any filter that can be applied.

Need a random common magic item as loot?
Need 5 spells of levels 1-3?
Need a construct of 0-2 CR?

These list pages include
- Spells
- Monsters
- Magic Items
- Feats
- Backgrounds
- Equipment

It also includes the same functionality for homebrew items on the following pages
- Spells
- Monsters
- Magic Items
- Feats
- Backgrounds
- Subclasses
- Races


Say thanks paypal.me/baindev                    

확장 프로그램 기본 정보

이름 Beyond RNG Beyond RNG
ID impdabbijmnadimnbicoaigmhgfmlnnd
공식 URL https://chromewebstore.google.com/detail/beyond-rng/impdabbijmnadimnbicoaigmhgfmlnnd
설명 Randomiser for DNDBeyond
파일 크기 226 KB
설치 횟수 134
현재 버전 1.0.1
최근 업데이트 2022-04-14
출시 날짜 2022-04-12
평점 4.00/5 총 1 개의 평점
개발자 Unknown
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bain2236/Beyond-RNG
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Beyond RNG",
    "version": "1.0.1",
    "description": "Randomiser for DNDBeyond",
    "icons": {
        "128": "icons\/RNG-logo128.png"
    },
    "permissions": [
        "*:\/\/*.dndbeyond.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/spells*",
                "https:\/\/www.dndbeyond.com\/magic-items*",
                "https:\/\/www.dndbeyond.com\/monsters*",
                "https:\/\/www.dndbeyond.com\/equipment*",
                "https:\/\/www.dndbeyond.com\/feats*",
                "https:\/\/www.dndbeyond.com\/backgrounds*",
                "https:\/\/www.dndbeyond.com\/homebrew*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/RNG-1-128.png"
            ],
            "matches": [
                "https:\/\/www.dndbeyond.com\/*"
            ]
        }
    ]
}