o-ey

A user translation viewer for BOJ

o-ey क्या है?

o-ey kiwiyou.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A user translation viewer for BOJ"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में o-ey एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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\/*"
            ]
        }
    ]
}