백준 헬프 (Baekjoon Help)

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

백준 헬프 (Baekjoon Help)とは何ですか?

백준 헬프 (Baekjoon Help)はalsrb0504によって開発されたChromeの拡張機能で、その主な機能は「백준 풀이 검색을 위한 크롬 확장 프로그램」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

백준 헬프 (Baekjoon Help)拡張機能のCRXファイルをダウンロード

백준 헬프 (Baekjoon Help)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        백준(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                    

拡張機能の基本情報

名前 백준 헬프 (Baekjoon Help) 백준 헬프 (Baekjoon Help)
ID pdemnkinpcpgaoifngpojlfdmngbpaha
公式URL https://chromewebstore.google.com/detail/%EB%B0%B1%EC%A4%80-%ED%97%AC%ED%94%84-baekjoon-help/pdemnkinpcpgaoifngpojlfdmngbpaha
説明 백준 풀이 검색을 위한 크롬 확장 프로그램
ファイルサイズ 62.29 KB
インストール数 243
現在のバージョン 1.0.2
最終更新日 2023-01-29
公開日 2023-01-06
評価 5.00/5 合計 3 レビュー
開発者 alsrb0504
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/alsrb0504/Baekjoon-Help-Extension
プライバシーポリシーページのURL https://velog.io/@mk0504/%EC%A0%80%EC%9E%A5%EC%9A%A9
対応言語 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"
    ]
}