Beyond RNG
Randomiser for DNDBeyond
Beyond RNGคืออะไร?
Beyond RNG เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Randomiser for DNDBeyond"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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\/*" ] } ] } |