Roblox URL Launcher
Joins a game, specific server or opens studio basing on url parameters.
Roblox URL Launcher là gì?
Roblox URL Launcher là một tiện ích mở rộng Chrome được phát triển bởi Deviate Studio, và tính năng chính của nó là "Joins a game, specific server or opens studio basing on url parameters.".
Ả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 Roblox URL Launcher
Tải xuống các tệp mở rộng Roblox URL Launcher 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
Video showcasing extension - https://www.youtube.com/watch?v=AfmOCZu1uX0 The extension is open source (https://github.com/dv8-studio/RobloxURLLauncher). Its behavior is further explained in Privacy Policy (https://github.com/dv8-studio/RobloxURLLauncher/blob/master/PRIVACY.md) This extension should work wherever Roblox launcher itself works (Windows, macOS). *DOES NOT WORK ON CHROME OS AS LONG AS ROBLOX ITSELF DOESN'T SUPPORT IT* Disclaimer: This extension was NOT made to bypass Roblox security. For instance, you won't be able to join a game you don't normally have access to or join a server of a player you can't follow. THE USE OF ROBLOX TRADEMARK IS FOR IDENTIFICATION AND REFERENCE PURPOSES ONLY AND DOES NOT IMPLY ANY ASSOCIATION WITH THE TRADEMARK HOLDER OF THEIR PRODUCT BRAND THE EXTENSION IS COMMUNITY-MADE (IT'S NOT MADE BY ROBLOX CORPORATION) Possible usage (examples of links): - https://www.roblox.com/home?followUserId=1 - would make the client follow user ID 1 into the game the user is playing (only works if the player's privacy settings allow you to join them e.g. via the profile) - https://www.roblox.com/home?editPlaceId=920587237 - would try to open a place with that ID in the studio (won't work if you don't have permissions to edit that place) - https://www.roblox.com/home?placeId=920587237 - would open the client and join that place (won't work if you don't have permissions to play it) - https://www.roblox.com/home?placeId=920587237&gameId=8c7024c6-e89d-4bd1-977b-2c21fd8ed793 OR https://www.roblox.com/games/920587237/NAME?gameId=8c7024c6-e89d-4bd1-977b-2c21fd8ed793 - would open the client and join a server with that identifier (same condition as above applies) - https://www.roblox.com/home?privatePlaceId=920587237&privateId=efa67300-c5a1-47e6-a3d8-a9af904e6993 - would open the client and join a private server with that identifier (only works if you normally see the server under the `Servers` tab. In other case, use below method based on invite link) - https://www.roblox.com/home?privatePlaceId=920587237&code=wlH1zTFR3s3ZRNTbwzVL3530tVh2aHl1 - joins a private server using private server link (code comes from `privateServerLinkCode` parameter of Roblox's private server link) The browser tab will be automatically closed after launching the app unless `dontClose=1` parameter is present in the link. Above examples contain `https://www.roblox.com/home` base, but you may also use: - `https://www.roblox.com/groups` - `https://www.roblox.com/games`
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Roblox URL Launcher |
ID | lcefjaknjehbafdeacjbjnfpfldjdlcc |
URL Chính Thức | https://chromewebstore.google.com/detail/roblox-url-launcher/lcefjaknjehbafdeacjbjnfpfldjdlcc |
Mô tả | Joins a game, specific server or opens studio basing on url parameters. |
Kích Thước Tệp | 70.37 KB |
Số Lần Cài Đặt | 35,469 |
Phiên Bản Hiện Tại | 1.12 |
Cập Nhật Lần Cuối | 2022-08-25 |
Ngày Phát Hành | 2020-05-03 |
Đánh Giá | 2.79/5 Tổng số 58 Đánh Giá |
Nhà Phát Triển | Deviate Studio |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/dv8-studio/RobloxURLLauncher |
URL Trang Trợ Giúp | https://github.com/dv8-studio/RobloxURLLauncher/issues |
URL Trang Chính Sách Bảo Mật | https://dv8.pl/privacy-en |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Roblox URL Launcher", "version": "1.12", "description": "Joins a game, specific server or opens studio basing on url parameters.", "permissions": [], "content_scripts": [ { "matches": [ "*:\/\/*.roblox.com\/home*", "*:\/\/*.roblox.com\/games*", "*:\/\/*.roblox.com\/groups*" ], "run_at": "document_end", "js": [ "index.js" ] } ], "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "host_permissions": [ "*:\/\/*.roblox.com\/home*", "*:\/\/*.roblox.com\/games*", "*:\/\/*.roblox.com\/groups*" ], "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ " |