백준 헬프 (Baekjoon Help)

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

Cos'è 백준 헬프 (Baekjoon Help)?

백준 헬프 (Baekjoon Help) è un'estensione di Chrome sviluppata da alsrb0504, e la sua funzione principale è "백준 풀이 검색을 위한 크롬 확장 프로그램".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione 백준 헬프 (Baekjoon Help)

Scarica i file di estensione 백준 헬프 (Baekjoon Help) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome 백준 헬프 (Baekjoon Help) 백준 헬프 (Baekjoon Help)
ID pdemnkinpcpgaoifngpojlfdmngbpaha
URL Ufficiale https://chromewebstore.google.com/detail/%EB%B0%B1%EC%A4%80-%ED%97%AC%ED%94%84-baekjoon-help/pdemnkinpcpgaoifngpojlfdmngbpaha
Descrizione 백준 풀이 검색을 위한 크롬 확장 프로그램
Dimensione del File 62.29 KB
Conteggio Installazioni 243
Versione Corrente 1.0.2
Ultimo Aggiornamento 2023-01-29
Data di Pubblicazione 2023-01-06
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore alsrb0504
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/alsrb0504/Baekjoon-Help-Extension
URL della Pagina della Politica sulla Privacy https://velog.io/@mk0504/%EC%A0%80%EC%9E%A5%EC%9A%A9
Lingue Supportate 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"
    ]
}