CHelper extension
Allows to parse tasks directly from browser.
Apa itu CHelper extension?
CHelper extension adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Allows to parse tasks directly from browser.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi CHelper extension
Unduh file ekstensi CHelper extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | CHelper extension |
ID | eicjndbmlajfjdhephbcjdeegmmoadip |
URL Resmi | https://chromewebstore.google.com/detail/chelper-extension/eicjndbmlajfjdhephbcjdeegmmoadip |
Deskripsi | Allows to parse tasks directly from browser. |
Ukuran File | 6.61 KB |
Jumlah Instalasi | 705 |
Versi Saat Ini | 4.4.3.1 |
Terakhir Diperbarui | 2019-04-25 |
Tanggal Publikasi | 2019-04-25 |
Penilaian | 4.81/5 Total 31 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |