Beyond RNG
Randomiser for DNDBeyond
Beyond RNG là gì?
Beyond RNG là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Randomiser for DNDBeyond".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Beyond RNG
Tải xuống các tệp mở rộng Beyond RNG dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Beyond RNG |
ID | impdabbijmnadimnbicoaigmhgfmlnnd |
URL Chính Thức | https://chromewebstore.google.com/detail/beyond-rng/impdabbijmnadimnbicoaigmhgfmlnnd |
Mô tả | Randomiser for DNDBeyond |
Kích Thước Tệp | 226 KB |
Số Lần Cài Đặt | 134 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2022-04-14 |
Ngày Phát Hành | 2022-04-12 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Unknown |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/bain2236/Beyond-RNG |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |