백준 헬프 (Baekjoon Help)

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

Qu'est-ce que 백준 헬프 (Baekjoon Help) ?

백준 헬프 (Baekjoon Help) est une extension Chrome développée par alsrb0504, et sa fonction principale est "백준 풀이 검색을 위한 크롬 확장 프로그램".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension 백준 헬프 (Baekjoon Help)

Téléchargez les fichiers d'extension 백준 헬프 (Baekjoon Help) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom 백준 헬프 (Baekjoon Help) 백준 헬프 (Baekjoon Help)
ID pdemnkinpcpgaoifngpojlfdmngbpaha
URL Officiel https://chromewebstore.google.com/detail/%EB%B0%B1%EC%A4%80-%ED%97%AC%ED%94%84-baekjoon-help/pdemnkinpcpgaoifngpojlfdmngbpaha
Description 백준 풀이 검색을 위한 크롬 확장 프로그램
Taille du Fichier 62.29 KB
Nombre d'Installations 243
Version Actuelle 1.0.2
Dernière Mise à Jour 2023-01-29
Date de Publication 2023-01-06
Évaluation 5.00/5 Total 3 Évaluations
Développeur alsrb0504
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/alsrb0504/Baekjoon-Help-Extension
URL de la Page de Politique de Confidentialité https://velog.io/@mk0504/%EC%A0%80%EC%9E%A5%EC%9A%A9
Langues Prises en Charge 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"
    ]
}