o-ey
A user translation viewer for BOJ
什麼是o-ey?
o-ey是由kiwiyou.dev開發的Chrome擴展程式,該擴展的主要功能是“A user translation viewer for BOJ”。
擴展截圖
下載o-ey擴展crx文件
下載o-ey擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/*" ] } ] } |