백준 헬프 (Baekjoon Help)
백준 풀이 검색을 위한 크롬 확장 프로그램
Was ist 백준 헬프 (Baekjoon Help)?
백준 헬프 (Baekjoon Help) ist eine Chrome-Erweiterung, die von alsrb0504 entwickelt wurde, und ihr Hauptmerkmal ist "백준 풀이 검색을 위한 크롬 확장 프로그램".
Erweiterungsscreenshots
백준 헬프 (Baekjoon Help)-Erweiterungs-CRX-Datei herunterladen
Laden Sie 백준 헬프 (Baekjoon Help)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
백준(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
Grundlegende Informationen zur Erweiterung
Name | 백준 헬프 (Baekjoon Help) |
ID | pdemnkinpcpgaoifngpojlfdmngbpaha |
Offizielle URL | https://chromewebstore.google.com/detail/%EB%B0%B1%EC%A4%80-%ED%97%AC%ED%94%84-baekjoon-help/pdemnkinpcpgaoifngpojlfdmngbpaha |
Beschreibung | 백준 풀이 검색을 위한 크롬 확장 프로그램 |
Dateigröße | 62.29 KB |
Installationsanzahl | 243 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2023-01-29 |
Veröffentlichungsdatum | 2023-01-06 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | alsrb0504 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/alsrb0504/Baekjoon-Help-Extension |
URL der Datenschutzrichtlinien-Seite | https://velog.io/@mk0504/%EC%A0%80%EC%9E%A5%EC%9A%A9 |
Unterstützte Sprachen | 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" ] } |