Competitive Companion

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

Competitive Companion란 무엇입니까?

Competitive Companion은(는) Jasper van Merle에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Parses competitive programming problems and sends them to various tools like CP Editor and CPH."입니다.

확장 프로그램 스크린샷

screenshot

Competitive Companion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}