CoderPad

Schedule technical interviews with ease

CoderPad란 무엇입니까?

CoderPad은(는) CoderPad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Schedule technical interviews with ease"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

CoderPad 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}