Beyond RNG
Randomiser for DNDBeyond
Beyond RNG क्या है?
Beyond RNG Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Randomiser for DNDBeyond"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Beyond RNG एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |