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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.ashishkedia.me และคุณลักษณะหลักของมันคือ "Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Code Now - IDE Opener for Programmers
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| URL อย่างเป็นทางการ | 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\/*"
]
} | |