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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Code Now - IDE Opener for Programmers 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Code Now - IDE Opener for Programmers Code Now - IDE Opener for Programmers
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\/*"
    ]
}