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ファイルをダウンロード

CHelper extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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