RoNew
In a single click, join the newest server of any Roblox experience!
RoNewคืออะไร?
RoNew เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ThatTimothy และคุณลักษณะหลักของมันคือ "In a single click, join the newest server of any Roblox experience!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RoNew
ดาวน์โหลดไฟล์ส่วนขยาย RoNew ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to automatically join the newest server of a Roblox experience, by waiting for the new server to show up. Features - Get newest Roblox servers for any game - Seamless integration - Auto Join - Refresh Usage 1. Navigate to a roblox game page 2. Go to the Servers tab 3. You should see a RoNew section 4. Click Load New Servers 5. Enjoy! Note that it may take a while on certain experiences, as Roblox can stop creating new servers periodically. This extension is open source! The link to the GitHub repo can be accessed using the "Website" button with a home icon on the right side of the screen.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | RoNew |
ID | kocjbdahjmgeecieicmoffnjgboechih |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ronew/kocjbdahjmgeecieicmoffnjgboechih |
คำอธิบาย | In a single click, join the newest server of any Roblox experience! |
ขนาดไฟล์ | 23.51 KB |
จำนวนการติดตั้ง | 1,266 |
เวอร์ชันปัจจุบัน | 2.1.3 |
อัปเดตครั้งล่าสุด | 2023-01-21 |
วันที่เผยแพร่ | 2023-01-21 |
คะแนน | 4.00/5 รวมทั้งหมด 12 คะแนน |
ผู้พัฒนา | ThatTimothy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ThatTimothy/RoNew |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "RoNew", "version": "2.1.3", "description": "In a single click, join the newest server of any Roblox experience!", "author": "ThatTimothy", "icons": { "16": "res\/icon_16.png", "32": "res\/icon_32.png", "64": "res\/icon_64.png", "128": "res\/icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.roblox.com\/games\/*", "https:\/\/web.roblox.com\/games\/*" ], "js": [ "js\/contentScript.js" ], "css": [ "css\/container.css" ] } ], "web_accessible_resources": [ { "resources": [ "\/html\/containerTemplate.html", "\/html\/serverTemplate.html", "\/js\/injectedJoinScript.js", "res\/notification.mp3" ], "matches": [ "https:\/\/www.roblox.com\/*", "https:\/\/web.roblox.com\/*" ] } ] } |