CoderPad

Schedule technical interviews with ease

CoderPadとは何ですか?

CoderPadはCoderPadによって開発されたChromeの拡張機能で、その主な機能は「Schedule technical interviews with ease」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

CoderPad拡張機能のCRXファイルをダウンロード

CoderPad拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}