CHelper extension

Allows to parse tasks directly from browser.

CHelper extension란 무엇입니까?

CHelper extension은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to parse tasks directly from browser."입니다.

확장 프로그램 스크린샷

CHelper extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension transfers data to CHelper plugin for IntelliJ Idea to create new tasks based on opened problem statements and not usable without after mentioned plugin. For more info on CHelper and to leave your feedback visit https://codeforces.com/blog/entry/18974                    

확장 프로그램 기본 정보

이름 CHelper extension CHelper extension
ID eicjndbmlajfjdhephbcjdeegmmoadip
공식 URL https://chromewebstore.google.com/detail/chelper-extension/eicjndbmlajfjdhephbcjdeegmmoadip
설명 Allows to parse tasks directly from browser.
파일 크기 6.61 KB
설치 횟수 705
현재 버전 4.4.3.1
최근 업데이트 2019-04-25
출시 날짜 2019-04-25
평점 4.81/5 총 31 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CHelper extension",
    "description": "Allows to parse tasks directly from browser.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "4.4.3.1",
    "permissions": [
        "tabs",
        "http:\/\/localhost\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.contest.yandex.ru\/*",
                "https:\/\/*.contest.yandex.com\/*",
                "https:\/\/*.contest2.yandex.ru\/*",
                "https:\/\/*.contest2.yandex.com\/*",
                "http:\/\/codeforces.ru\/*",
                "http:\/\/codeforces.com\/*",
                "https:\/\/codeforces.ru\/*",
                "https:\/\/codeforces.com\/*",
                "https:\/\/hackerrank.com\/*",
                "https:\/\/www.hackerrank.com\/*",
                "https:\/\/www.facebook.com\/hackercup\/*",
                "http:\/\/usaco.org\/*",
                "http:\/\/www.usaco.org\/*",
                "https:\/\/code.google.com\/codejam\/contest\/*",
                "https:\/\/codejam.withgoogle.com\/*",
                "http:\/\/contest.bayan.ir\/*",
                "https:\/\/*.kattis.com\/problems\/*",
                "https:\/\/*.kattis.com\/contests\/*",
                "http:\/\/www.codechef.com\/*",
                "https:\/\/www.codechef.com\/*",
                "https:\/\/www.hackerearth.com\/*",
                "https:\/\/atcoder.jp\/*",
                "https:\/\/csacademy.com\/*",
                "https:\/\/codingcompetitions.withgoogle.com\/codejam\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": "newTask.png",
        "default_title": "Parse task"
    },
    "icons": {
        "16": "newTask16.png"
    }
}