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 là gì?

Code Now - IDE Opener for Programmers là một tiện ích mở rộng Chrome được phát triển bởi https://www.ashishkedia.me, và tính năng chính của nó là "Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code Now - IDE Opener for Programmers

Tải xuống các tệp mở rộng Code Now - IDE Opener for Programmers dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Code Now - IDE Opener for Programmers Code Now - IDE Opener for Programmers
ID eiifebdnfcadjhgenpanagdankjhkjeb
URL Chính Thức https://chrome.google.com/webstore/detail/code-now-ide-opener-for-p/eiifebdnfcadjhgenpanagdankjhkjeb
Mô tả Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added.
Kích Thước Tệp 47.52 KB
Số Lần Cài Đặt 954
Phiên Bản Hiện Tại 5.0
Cập Nhật Lần Cuối 2016-02-23
Ngày Phát Hành 2016-02-23
Đánh Giá 3.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://www.ashishkedia.me
Loại Thanh Toán free
Trang Web Mở Rộng https://www.ashishkedia.me/projects/code_now
URL Trang Trợ Giúp https://github.com/ashish1294/code-now-CodeChef
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}