BOJ Addon
BOJ Addon
What is BOJ Addon?
BOJ Addon is a Chrome extension developed by 7nbaek, and its main feature is "BOJ Addon".
Extension Screenshots
Download BOJ Addon Extension CRX File
Download BOJ Addon 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
백준 온라인 저지 사이트에서 문제를 풀어보세요! 주의 : 자바스크립트로만 사용이 가능합니다. 이 익스텐션을 설치한 후 백준 문제풀이 사이트로 이동하면 다음과 같은 기능을 사용할 수 있습니다. 기능 1. IDE 없이 코딩을 바로 할 수 있습니다 기능 2. 1번에서 작성한 코드를 이용하여, 해당 문제 페이지에서 정답이 맞았는지 확인할 수 있습니다. 기능 3. 백준 문제에 있지 않은 테스트 케이스를 직접 추가해서 문제를 풀이할 수 있습니다. 기능 4. 에디터에 테마를 다크모드, 라이트모드로 변경할 수 있습니다.
Extension Basic Information
Name | BOJ Addon |
ID | okppngggdhclomfpdomgdpdndfgdljhb |
Official URL | https://chromewebstore.google.com/detail/boj-addon/okppngggdhclomfpdomgdpdndfgdljhb |
Description | BOJ Addon |
File Size | 896 KB |
Installation Count | 48 |
Current Version | 1.0.7 |
Last Updated | 2023-01-14 |
Publish Date | 2022-08-25 |
Rating | 5.00/5 Total 1 Ratings |
Developer | 7nbaek |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/codevilot |
Supported Languages | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BOJ Addon", "version": "1.0.7", "description": "BOJ Addon", "author": "Namheon Baek", "content_scripts": [ { "css": [ "style.css" ], "js": [ "main.js" ], "matches": [ "https:\/\/www.acmicpc.net\/problem\/*", "https:\/\/*\/contest\/problem\/*" ], "exclude_matches": [ "https:\/\/www.acmicpc.net\/problem\/status\/*", "https:\/\/www.acmicpc.net\/problem\/history\/*" ] } ], "type": "module" } |