Beyond RNG

Randomiser for DNDBeyond

ما هو Beyond RNG؟

Beyond RNG هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Randomiser for DNDBeyond".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Beyond RNG

قم بتنزيل ملفات الامتداد Beyond RNG بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*"
            ]
        }
    ]
}