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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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\/*"
            ]
        }
    ]
}