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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to Add Code-Now Button to Problem Pages. One Button for each - C, C++, Java and Python is added."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Code Now - IDE Opener for Programmers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}