DashBlox - Improving Roblox

Creates new features that otherwise are missing, removed, or don't exist.

DashBlox - Improving Roblox란 무엇입니까?

DashBlox - Improving Roblox은(는) WingedDash에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Creates new features that otherwise are missing, removed, or don't exist."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

DashBlox - Improving Roblox 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension has multiple features to improve your experience on Roblox, just to list a few of the features that are included in the extension:
- Last Online.
- Item statistics.
- Grouping the home page's recommended section.
- The ability to customize your theme in settings.
- The ability to revert back to the old robux icon.
- The ability to revert back to the old navigation icons.
- The ability to revert back to the original top bar.
- The ability to revert back the classic homepage look.

You can find the latest update logs here: https://github.com/WingedDash/DashBlox/blob/master/Update%20log.md

If you find any bugs or glitches, you can report them here: https://github.com/WingedDash/DashBlox/issues                    

확장 프로그램 기본 정보

이름 DashBlox - Improving Roblox DashBlox - Improving Roblox
ID ogffnhpicoghhpcbememhijlbdejchjb
공식 URL https://chromewebstore.google.com/detail/dashblox-improving-roblox/ogffnhpicoghhpcbememhijlbdejchjb
설명 Creates new features that otherwise are missing, removed, or don't exist.
파일 크기 231 KB
설치 횟수 28,376
현재 버전 2.1.4
최근 업데이트 2023-08-23
출시 날짜 2020-04-06
평점 4.06/5 총 79 개의 평점
개발자 WingedDash
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/WingedDash/DashBlox
도움말 페이지 URL https://github.com/WingedDash/DashBlox/issues
개인정보 보호 정책 페이지 URL https://github.com/WingedDash/DashBlox/blob/master/Privacy%20Policy.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DashBlox - Improving Roblox",
    "short_name": "DashBlox",
    "description": "Creates new features that otherwise are missing, removed, or don't exist.",
    "author": "WingedDash",
    "version": "2.1.4",
    "minimum_chrome_version": "90",
    "action": {
        "default_title": "DashBlox"
    },
    "icons": {
        "256": "resources\/icons\/logo\/256\/glow.png",
        "128": "resources\/icons\/logo\/128\/glow.png"
    },
    "background": {
        "service_worker": "js\/dashblox.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "resources\/*"
            ],
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.roblox.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/library\/jquery3.6.0.js",
                "js\/dashblox.js",
                "js\/pages.js",
                "js\/pages\/assets.js",
                "js\/pages\/avatar.js",
                "js\/pages\/catalog.js",
                "js\/pages\/discover.js",
                "js\/pages\/games.js",
                "js\/pages\/groups.js",
                "js\/pages\/home.js",
                "js\/pages\/profile.js",
                "js\/pages\/settings.js",
                "js\/pages\/universal.js",
                "js\/util.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ]
        }
    ]
}