o-ey
A user translation viewer for BOJ
o-ey là gì?
o-ey là một tiện ích mở rộng Chrome được phát triển bởi kiwiyou.dev, và tính năng chính của nó là "A user translation viewer for BOJ".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng o-ey
Tải xuống các tệp mở rộng o-ey dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | o-ey |
ID | nhhlodckfmkepfalihpjdcbjecpjhfdf |
URL Chính Thức | https://chromewebstore.google.com/detail/o-ey/nhhlodckfmkepfalihpjdcbjecpjhfdf |
Mô tả | A user translation viewer for BOJ |
Kích Thước Tệp | 134 KB |
Số Lần Cài Đặt | 261 |
Phiên Bản Hiện Tại | 0.7.2 |
Cập Nhật Lần Cuối | 2024-01-22 |
Ngày Phát Hành | 2023-03-18 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | kiwiyou.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kiwiyou/o-ey |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |