Beyond RNG

Randomiser for DNDBeyond

什麼是Beyond RNG?

Beyond RNG是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Randomiser for DNDBeyond”。

擴展截圖

screenshot
screenshot
screenshot

下載Beyond RNG擴展crx文件

下載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
官方網址 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\/*"
            ]
        }
    ]
}