RoSeal - Augmented Roblox Experience
Improve your Roblox website experience. And there's also seals.
RoSeal - Augmented Roblox Experience란 무엇입니까?
RoSeal - Augmented Roblox Experience은(는) https://roseal.live에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve your Roblox website experience. And there's also seals."입니다.
확장 프로그램 스크린샷
RoSeal - Augmented Roblox Experience 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A web extension (with a seal mascot!) to improve your Roblox experience.
Enjoy features including:
- Discover filtering to filter through experiences on the Discover page
- Group drag-and-drop organization customization, folders included
- Better badges list with comparing badges between 2 users
- Block experiences from appearing on the site
- Store, import, and export experience private server links
- Accounts manager to switch between accounts
- View experience developer products and see possible microtransactions
- Mention users/groups in an item description
- Refreshed home header to greet you
- Chat sorts to sort your conversations with your friends
- Remove unnecessary home sorts
- Quick actions in cards on your friends page to unfriend/follow/force unfollow faster
Please note that some features may need to be toggled manually, including experimental and beta features.
See https://www.roseal.live for more information. 확장 프로그램 기본 정보
| 이름 | |
| ID | hfjngafpndganmdggnapblamgbfjhnof |
| 공식 URL | https://chromewebstore.google.com/detail/roseal-augmented-roblox-e/hfjngafpndganmdggnapblamgbfjhnof |
| 설명 | Improve your Roblox website experience. And there's also seals. |
| 파일 크기 | 486 KB |
| 설치 횟수 | 106,066 |
| 현재 버전 | 1.3.28 (Mizore) |
| 최근 업데이트 | 2024-02-27 |
| 출시 날짜 | 2022-12-25 |
| 평점 | 4.08/5 총 154 개의 평점 |
| 개발자 | https://roseal.live |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://www.roseal.live |
| 도움말 페이지 URL | https://www.roseal.live/support |
| 개인정보 보호 정책 페이지 URL | https://www.roseal.live/privacy-policy |
| 지원되는 언어 | en,fr,es,pt-BR,ru,th |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"short_name": "RoSeal",
"name": "__MSG_manifest_name__",
"description": "__MSG_manifest_description__",
"author": "Julli4n",
"version": "1.3.28",
"version_name": "1.3.28 (Mizore)",
"icons": {
"64": "img\/icon\/64.png",
"128": "img\/icon\/128.png",
"256": "img\/icon\/256.png",
"512": "img\/icon\/512.png"
},
"default_locale": "en",
"permissions": [
"storage"
],
"optional_permissions": [
"cookies",
"webRequest"
],
"host_permissions": [
"*:\/\/*.roblox.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.roblox.com\/*",
"https:\/\/create.roblox.com\/*",
"https:\/\/authorize.roblox.com\/*"
],
"js": [
"js\/content.js"
],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.roblox.com\/*",
"https:\/\/create.roblox.com\/*",
"https:\/\/authorize.roblox.com\/*"
],
"js": [
"js\/dom.js"
],
"world": "MAIN",
"all_frames": true,
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "popup.html?options"
},
"incognito": "split",
"background": {
"service_worker": "js\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"css\/*",
"js\/dom.js",
"img\/*"
],
"matches": [
"*:\/\/*.roblox.com\/*"
]
}
],
"minimum_chrome_version": "111"
} | |