Code Now - IDE Opener for Programmers
Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added.
什麼是Code Now - IDE Opener for Programmers?
Code Now - IDE Opener for Programmers是由https://www.ashishkedia.me開發的Chrome擴展程式,該擴展的主要功能是“Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added.”。
擴展截圖
下載Code Now - IDE Opener for Programmers擴展crx文件
下載Code Now - IDE Opener for Programmers擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A chrome/chromium plugin for CodeChef / SPOJ / CodeForces / Hackerearth to instantly open your Favourite IDE
It is a simple chrome/chromium plugin for Linux Users which adds 4 buttons to every CodeChef / SPOJ / CodeForces / HackerEarth Problem Page (one for each of C, C++, Python and Java). Clicking on each button will open up your favourite IDE for that language instantly with a default template !! It is particularly useful during short contests.
You can choose different IDEs for different Languages. Templates can also be different for different Languages. The host-program also have to installed and configured for this extension to work. Please visit - https://github.com/ashish1294/code-now-CodeChef for details regarding installation of host program. 擴展基本資訊
| 名稱 | |
| ID | eiifebdnfcadjhgenpanagdankjhkjeb |
| 官方網址 | https://chrome.google.com/webstore/detail/code-now-ide-opener-for-p/eiifebdnfcadjhgenpanagdankjhkjeb |
| 簡介 | Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added. |
| 檔案大小 | 47.52 KB |
| 安裝次數 | 954 |
| 目前版本 | 5.0 |
| 更新時間 | 2016-02-23 |
| 上架時間 | 2016-02-23 |
| 評分 | 3.17/5 共 6 次評分 |
| 開發者 | https://www.ashishkedia.me |
| 付費類型 | free |
| 擴展官網 | https://www.ashishkedia.me/projects/code_now |
| 說明頁面URL | https://github.com/ashish1294/code-now-CodeChef |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Code Now - IDE Opener for Programmers",
"description": "Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added.",
"version": "5.0",
"author": "Ashish Kedia",
"short_name": "Code Now",
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/www.codechef.com\/*"
],
"js": [
"jquery.js",
"basic.js",
"codechef_problem.js"
]
},
{
"run_at": "document_end",
"matches": [
"http:\/\/www.spoj.com\/problems\/*"
],
"js": [
"jquery.js",
"basic.js",
"spoj_problem.js"
]
},
{
"run_at": "document_end",
"matches": [
"http:\/\/codeforces.com\/*"
],
"js": [
"jquery.js",
"basic.js",
"codeforces_problem.js"
]
},
{
"run_at": "document_end",
"matches": [
"https:\/\/www.hackerearth.com\/problem\/*"
],
"js": [
"jquery.js",
"basic.js",
"hackerearth.js"
]
}
],
"background": {
"persistent": false,
"scripts": [
"back.js"
]
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"tabs",
"nativeMessaging",
"https:\/\/www.codechef.com\/*",
"http:\/\/www.spoj.com\/*",
"http:\/\/codeforces.com\/*",
"https:\/\/www.hackerearth.com\/*"
]
} | |