o-ey
A user translation viewer for BOJ
o-ey란 무엇입니까?
o-ey은(는) kiwiyou.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A user translation viewer for BOJ"입니다.
확장 프로그램 스크린샷
o-ey 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Take user translation from boj-user-translation and shows on BOJ problem page (e.g. https://acmicpc.net/problem/2557). Problems translated by users are marked as yellow on problem listings. On the problem page, click the language button, and the translation is shown. You can see the translated pages index on https://github.com/kiwiyou/boj-user-translation/blob/main/index. If you want to use your own repository for translation, click the extension button and add your repository on the list. You can see the list of translated problems on solved.ac (https://solved.ac/) as well.
확장 프로그램 기본 정보
이름 | o-ey |
ID | nhhlodckfmkepfalihpjdcbjecpjhfdf |
공식 URL | https://chromewebstore.google.com/detail/o-ey/nhhlodckfmkepfalihpjdcbjecpjhfdf |
설명 | A user translation viewer for BOJ |
파일 크기 | 134 KB |
설치 횟수 | 261 |
현재 버전 | 0.7.2 |
최근 업데이트 | 2024-01-22 |
출시 날짜 | 2023-03-18 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | kiwiyou.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kiwiyou/o-ey |
지원되는 언어 | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "0.7.2", "short_name": "__MSG_appShortName__", "manifest_version": 3, "default_locale": "en", "icons": { "16": "images\/16.png", "32": "images\/32.png", "64": "images\/64.png", "128": "images\/128.png", "144": "images\/144.png", "192": "images\/192.png", "256": "images\/256.png" }, "action": { "browser_style": true, "default_area": "navbar", "default_popup": "index.html" }, "background": { "service_worker": "scripts\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.acmicpc.net\/problem\/*" ], "js": [ "scripts\/problem.js" ], "css": [ "styles\/label.css" ], "run_at": "document_end", "all_frames": false }, { "matches": [ "https:\/\/www.acmicpc.net\/problem\/*", "https:\/\/www.acmicpc.net\/category\/*", "https:\/\/www.acmicpc.net\/step\/*", "https:\/\/www.acmicpc.net\/problemset*" ], "js": [ "scripts\/problemList.js" ], "css": [ "styles\/label.css" ], "run_at": "document_end", "all_frames": false }, { "matches": [ "https:\/\/solved.ac\/*" ], "js": [ "scripts\/solvedList.js" ], "css": [ "styles\/solved.css" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "\/images\/*.svg" ], "matches": [ "https:\/\/solved.ac\/*", "https:\/\/www.acmicpc.net\/*" ] } ] } |