BOJ Extended

백준 온라인 저지(BOJ)를 확장된 기능과 함께 사용해보세요.

What is BOJ Extended?

BOJ Extended is a Chrome extension developed by L4zyF0x, and its main feature is "백준 온라인 저지(BOJ)를 확장된 기능과 함께 사용해보세요.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download BOJ Extended Extension CRX File

Download BOJ Extended extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        [테마]
- 어두운 테마를 포함해서 다양한 테마로 사이트를 이용해보세요.

[넓게 보기]
- 꽉 찬 화면으로 넓은 시야를 즐기세요.

[프로필]
- 문제 번호와 문제 제목을 선택하여 볼 수 있습니다. (기능 복구)
- 푼 문제를 다른 사용자와 비교할 수 있습니다. (기능 복구)
- 모든 유저의 닉네임 옆에 solved.ac 티어를 표시할 수 있습니다.

[그룹]
- 그룹의 채점 현황/랭킹/문제집 등 목록에서 한 번에 접속하세요.

[채점현황]
- 문제 번호와 문제 제목을 선택하여 볼 수 있습니다.
- 자신이 제출한 코드가 표시됩니다.
- 런타임 에러의 원인에 대한 짧은 설명이 표시됩니다.
- "옵션 페이지"에서 제출 결과의 텍스트를 수정할 수 있습니다.
- 마지막으로 채점된 상태(%)가 표시됩니다.

[문제]
- 타이머 기능을 사용해서 문제에 제한 시간을 설정하고 표시할 수 있습니다.

[빠른 검색]
- `ctrl+/` 또는 `atl+/` 키로 빠르게 검색하세요.

[폰트]
- 사이트의 폰트를 직접 설정해서 이용하세요.                    

Extension Basic Information

Name BOJ Extended BOJ Extended
ID mfcaadoifdifdnigjmfbekjbhehibfel
Official URL https://chromewebstore.google.com/detail/boj-extended/mfcaadoifdifdnigjmfbekjbhehibfel
Description 백준 온라인 저지(BOJ)를 확장된 기능과 함께 사용해보세요.
File Size 188 KB
Installation Count 6,000
Current Version 1.9.5
Last Updated 2023-08-12
Publish Date 2021-01-22
Rating 4.96/5 Total 25 Ratings
Developer L4zyF0x
Email [email protected]
Payment Type free
Extension Website https://github.com/joonas-yoon/boj-extended
Help Page URL https://github.com/joonas-yoon/boj-extended
Supported Languages ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BOJ Extended",
    "description": "\ubc31\uc900 \uc628\ub77c\uc778 \uc800\uc9c0(BOJ)\ub97c \ud655\uc7a5\ub41c \uae30\ub2a5\uacfc \ud568\uaed8 \uc0ac\uc6a9\ud574\ubcf4\uc138\uc694.",
    "version": "1.9.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.acmicpc.net\/?",
                "https:\/\/www.acmicpc.net\/*"
            ],
            "all_frames": true,
            "css": [
                "css\/common.css",
                "css\/theme-dark.css",
                "css\/theme-rigel.css"
            ],
            "run_at": "document_start",
            "js": [
                "js\/constants.js",
                "js\/utils\/config.js",
                "js\/utils\/storage.js",
                "js\/preload.js",
                "js\/utils\/helpers.js",
                "js\/utils\/index.js",
                "js\/features\/theme.js",
                "js\/features\/wide.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.acmicpc.net\/?",
                "https:\/\/www.acmicpc.net\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/features\/status\/all.js",
                "js\/features\/problem.js",
                "js\/features\/user.js",
                "js\/features\/board.js",
                "js\/features\/group.js",
                "js\/features\/vs.js",
                "js\/features\/search.js",
                "js\/features\/setting.js",
                "js\/features\/global.js",
                "js\/main.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/option.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/status.css",
                "css\/user.css",
                "js\/features\/status\/rte.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "https:\/\/www.acmicpc.net\/?",
        "https:\/\/www.acmicpc.net\/*",
        "https:\/\/solved.ac\/api\/v3\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}