Refined Roblox
Simplifies the Roblox interface and adds useful features
Refined Roblox là gì?
Refined Roblox là một tiện ích mở rộng Chrome được phát triển bởi Elijah, và tính năng chính của nó là "Simplifies the Roblox interface and adds useful features".
Ả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 Refined Roblox
Tải xuống các tệp mở rộng Refined Roblox 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
This extension adds in some small refinements to the Roblox website. Highlights: - User avatars next to creator names - Group join requests and member lists include a user's join date. - Markdown support in game descriptions - Low quality comments are hidden
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Refined Roblox |
ID | nmonfedkjkdejhdinghojfhjnedhmeao |
URL Chính Thức | https://chromewebstore.google.com/detail/refined-roblox/nmonfedkjkdejhdinghojfhjnedhmeao |
Mô tả | Simplifies the Roblox interface and adds useful features |
Kích Thước Tệp | 402 KB |
Số Lần Cài Đặt | 208 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2022-11-15 |
Ngày Phát Hành | 2022-07-16 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Elijah |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://gitlab.com/refined-roblox/refined-roblox |
URL Trang Trợ Giúp | https://gitlab.com/refined-roblox/refined-roblox/-/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Refined Roblox", "version": "1.0.1", "description": "Simplifies the Roblox interface and adds useful features", "homepage_url": "https:\/\/gitlab.com\/refined-roblox\/refined-roblox", "manifest_version": 3, "minimum_chrome_version": "91", "applications": { "gecko": { "id": "{24109a96-d720-4740-8bc6-ffae553ec7c8}", "strict_min_version": "91.0" } }, "permissions": [ "storage" ], "optional_permissions": [ "*:\/\/*\/*" ], "host_permissions": [ "https:\/\/www.roblox.com\/*", "https:\/\/web.roblox.com\/*", "https:\/\/users.roblox.com\/*", "https:\/\/thumbnails.roblox.com\/*", "*:\/\/*\/*" ], "icons": { "128": "icon.png" }, "options_ui": { "page": "options.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.roblox.com\/*", "https:\/\/web.roblox.com\/*" ], "exclude_matches": [ "https:\/\/*\/login\/*" ], "css": [ "refined-roblox.css" ], "js": [ "refined-roblox.js" ] } ], "action": { "default_icon": "icon.png" } } |