CoderPad

Schedule technical interviews with ease

CoderPad क्या है?

CoderPad CoderPad द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Schedule technical interviews with ease"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में CoderPad एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Create and link pads directly in Google Calendar or through the browser extension to help you schedule technical interviews.

CoderPad is a technical interview platform for leading development teams.  We help with every stage of the interview process.  Evaluate candidates through live, collaborative coding sessions through our online IDE that supports 30+ languages, screen them through asynchronous take-home assignments, and leverage our online whiteboard tool to chat through system design problems.                    

एक्सटेंशन की मूल जानकारी

नाम CoderPad CoderPad
ID gggomabkbnhcbmlgfdabcpopfdgkoapn
आधिकारिक URL https://chromewebstore.google.com/detail/coderpad/gggomabkbnhcbmlgfdabcpopfdgkoapn
विवरण Schedule technical interviews with ease
फ़ाइल का आकार 1.25 MB
स्थापना संख्या 331
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2023-10-24
प्रकाशन तिथि 2022-08-04
डेवलपर CoderPad
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://coderpad.io
सहायता पृष्ठ URL https://coderpad.io/contact-us
गोपनीयता नीति पृष्ठ URL https://coderpad.io/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CoderPad",
    "description": "Schedule technical interviews with ease",
    "version": "1.2.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "CoderPad"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ],
            "js": [
                ".\/static\/js\/googleCalendar.js"
            ],
            "css": [
                "googleCalendar.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "googleCalendar.html",
                "CPLogo.svg",
                "link.svg",
                "trash.svg",
                "warning.svg",
                "title.svg"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo128.png",
        "48": "logo128.png",
        "128": "logo128.png"
    },
    "permissions": [
        "storage"
    ]
}