BetterBlox - Roblox Improved
Adds a variety of useful features to improve Roblox
BetterBlox - Roblox Improved란 무엇입니까?
BetterBlox - Roblox Improved은(는) Bloxtensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a variety of useful features to improve Roblox"입니다.
확장 프로그램 스크린샷
BetterBlox - Roblox Improved 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Currently, this extension adds a total of 8 features to the Roblox website, including: - Appear Offline - All Time transactions - Profile Vanity URLs (https://roblox.com/users/usernamehere) - Infinite previous game history - Improved Develop page - Ability to hide VIP/Private servers - Ability to view locked groups - Ability to view Private Inventories To get to the settings menu, simply click on the top right gear and select "BetterBlox". If you don't see it, try clicking again. All features are free. You can support development by writing a good review. Questions, bugs, or feature requests? https://forms.gle/u9eD8rEJjcWNbk94A or [email protected]
확장 프로그램 기본 정보
이름 | |
ID | opajlejddbndoaaibjalhoonollcmnga |
공식 URL | https://chrome.google.com/webstore/detail/betterblox-roblox-improve/opajlejddbndoaaibjalhoonollcmnga |
설명 | Adds a variety of useful features to improve Roblox |
파일 크기 | 161 KB |
설치 횟수 | 1,283 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2023-09-24 |
출시 날짜 | 2022-08-01 |
평점 | 3.77/5 총 13 개의 평점 |
개발자 | Bloxtensions |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://github.com/Bloxtensions/Privacy-Policy/blob/main/Privacy-Policy.md |
지원되는 언어 | en,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BetterBlox - Roblox Improved", "description": "Adds a variety of useful features to improve Roblox", "default_locale": "en", "author": "cupiditys", "version": "1.2.0", "action": { "default_title": "BetterBlox" }, "icons": { "256": "icons\/logo\/256\/icon.png", "128": "icons\/logo\/128\/icon.png" }, "background": { "service_worker": "js\/main.js" }, "web_accessible_resources": [ { "resources": [ "css\/*", "js\/*" ], "matches": [ "*:\/\/*.roblox.com\/*" ] } ], "declarative_net_request": { "rule_resources": [ { "id": "rules", "enabled": true, "path": "rules.json" } ] }, "host_permissions": [ "*:\/\/*.roblox.com\/*" ], "permissions": [ "storage", "declarativeNetRequest" ], "content_scripts": [ { "js": [ "js\/jquery.js", "js\/main.js", "js\/pages.js", "js\/pages\/avatar.js", "js\/pages\/develop.js", "js\/pages\/discover.js", "js\/pages\/games.js", "js\/pages\/home.js", "js\/pages\/profile.js", "js\/pages\/inventory.js", "js\/pages\/settings.js", "js\/pages\/transactions.js", "js\/pages\/universal.js", "js\/util.js", "js\/pages\/vanity.js", "js\/pages\/groups.js" ], "run_at": "document_start", "all_frames": true, "matches": [ "*:\/\/*.roblox.com\/*" ] } ] } |