Competitive Companion

Parses competitive programming problems and sends them to various tools like CP Editor and CPH.

Competitive Companionคืออะไร?

Competitive Companion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jasper van Merle และคุณลักษณะหลักของมันคือ "Parses competitive programming problems and sends them to various tools like CP Editor and CPH."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Competitive Companion

ดาวน์โหลดไฟล์ส่วนขยาย Competitive Companion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Competitive Companion parses competitive programming problems and contests and sends the parsed data to various tools like CP Editor and CPH. At the moment it supports 86 online judges, including most major ones like AtCoder and Codeforces.

Using it is very simple. Just install the extension, make sure you got one of the supported tools open, navigate to a problem page and click on the green plus icon in the top-left of your browser. On websites where Competitive Companion is able to parse contests, navigating to the page with all the problems and clicking on the green plus icon will download and parse all problems in the contest at once. You can also use the Ctrl+Shift+U shortcut instead of the green plus icon (configurable on chrome://extensions/shortcuts).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Competitive Companion Competitive Companion
ID cjnmckjndlpiamhfimnnjmnckgghkjbl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/competitive-companion/cjnmckjndlpiamhfimnnjmnckgghkjbl
คำอธิบาย Parses competitive programming problems and sends them to various tools like CP Editor and CPH.
ขนาดไฟล์ 451 KB
จำนวนการติดตั้ง 61,865
เวอร์ชันปัจจุบัน 2.51.0
อัปเดตครั้งล่าสุด 2024-03-03
วันที่เผยแพร่ 2020-07-04
คะแนน 4.72/5 รวมทั้งหมด 69 คะแนน
ผู้พัฒนา Jasper van Merle
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jmerle/competitive-companion
URL หน้าช่วยเหลือ https://github.com/jmerle/competitive-companion/issues
URL หน้านโยบายความเป็นส่วนตัว https://gist.github.com/jmerle/5f446afd17b51328e2a87aee6b475358
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Competitive Companion",
    "description": "Parses competitive programming problems and sends them to various tools like CP Editor and CPH.",
    "version": "2.51.0",
    "author": "Jasper van Merle",
    "homepage_url": "https:\/\/github.com\/jmerle\/competitive-companion",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/localhost\/"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "19": "icons\/icon-19.png",
        "20": "icons\/icon-20.png",
        "24": "icons\/icon-24.png",
        "32": "icons\/icon-32.png",
        "38": "icons\/icon-38.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_title": "Parse task",
        "default_icon": {
            "16": "icons\/icon-16.png",
            "19": "icons\/icon-19.png",
            "20": "icons\/icon-20.png",
            "24": "icons\/icon-24.png",
            "32": "icons\/icon-32.png",
            "38": "icons\/icon-38.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "96": "icons\/icon-96.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        }
    },
    "optional_host_permissions": [
        "https:\/\/codejam.googleapis.com\/dashboard\/get_file\/*",
        "https:\/\/api.tlx.toki.id\/v2\/*",
        "https:\/\/resources.beecrowd.com\/*"
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    }
}