백준 헬프 (Baekjoon Help)

백준 풀이 검색을 위한 크롬 확장 프로그램

What is 백준 헬프 (Baekjoon Help)?

백준 헬프 (Baekjoon Help) is a Chrome extension developed by alsrb0504, and its main feature is "백준 풀이 검색을 위한 크롬 확장 프로그램".

Extension Screenshots

screenshot
screenshot
screenshot

Download 백준 헬프 (Baekjoon Help) Extension CRX File

Download 백준 헬프 (Baekjoon Help) 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

                        백준(https://www.acmicpc.net) 풀이를 좀 더 쾌적하게 할 수 있도록 도와주는 크롬 확장 프로그램입니다.

기능
1. 질문 게시판에서 답변이나 좋아요를 받은 글의 배경색을 변경하여 가시성을 높임.

2. 기존 문제 메뉴에서 "도움 받기" 버튼 추가.
- 버튼 클릭 시, 질문 게시판 탭과 구글에 문제 번호로 검색한 탭을 오픈.

3. 팝업 페이지에서 디폴트 언어 설정 기능.
- "도움 받기" 버튼 클릭 시, 문제 번호 + 디폴트 언어로 검색.

버전 정보
1.0.0
- 소개한 3가지 기능.
- 크롬 익스텐션 업로드.

1.0.1
- `도움 받기` 버튼 클릭 시,기존 질문게시판 + 문제번호 검색 2개의 탭을 띄우는 것에서 문제번호 검색 탭만 띄우는 것으로 변경.

1.0.2
- 팝업 페이지 언어 설정 기능 input -> select 형식으로 변경.

Github : https://github.com/alsrb0504/Baekjoon-Help-Extension

---------------------------------------------------------------------------------------------------------------------------------------------------------

It is a chrome extension program that helps make "Baekjoon Online Judge(https://www.acmicpc.net)" more comfortable.

Function
1. Increase visibility by changing the background color of the text that received answers or likes on the question board. (Picture 1)

2. Added the "Get help" button from the existing problem menu. (Picture 2)
- When you click the button, open the Question Board tab and the tab you searched on Google with the problem number.

3. Default language setting function in pop-up page. (Picture 3)
- When you click the "Get help" button, search in question number + default language.

Github : https://github.com/alsrb0504/Baekjoon-Help-Extension                    

Extension Basic Information

Name 백준 헬프 (Baekjoon Help) 백준 헬프 (Baekjoon Help)
ID pdemnkinpcpgaoifngpojlfdmngbpaha
Official URL https://chromewebstore.google.com/detail/%EB%B0%B1%EC%A4%80-%ED%97%AC%ED%94%84-baekjoon-help/pdemnkinpcpgaoifngpojlfdmngbpaha
Description 백준 풀이 검색을 위한 크롬 확장 프로그램
File Size 62.29 KB
Installation Count 243
Current Version 1.0.2
Last Updated 2023-01-29
Publish Date 2023-01-06
Rating 5.00/5 Total 3 Ratings
Developer alsrb0504
Email [email protected]
Payment Type free
Extension Website https://github.com/alsrb0504/Baekjoon-Help-Extension
Privacy Policy Page URL https://velog.io/@mk0504/%EC%A0%80%EC%9E%A5%EC%9A%A9
Supported Languages ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\ubc31\uc900 \ud5ec\ud504 (Baekjoon Help)",
    "description": "\ubc31\uc900 \ud480\uc774 \uac80\uc0c9\uc744 \uc704\ud55c \ud06c\ub86c \ud655\uc7a5 \ud504\ub85c\uadf8\ub7a8",
    "manifest_version": 3,
    "version": "1.0.2",
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.min.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.acmicpc.net\/problem\/*",
                "https:\/\/www.acmicpc.net\/status*",
                "https:\/\/www.acmicpc.net\/submit\/*",
                "https:\/\/www.acmicpc.net\/short\/*"
            ],
            "js": [
                "problem.min.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.acmicpc.net\/board\/search\/all\/problem\/*"
            ],
            "js": [
                "board.min.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}