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 |
ID | eicjndbmlajfjdhephbcjdeegmmoadip |
官方網址 | 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" } } |