CoderPad
Schedule technical interviews with ease
什麼是CoderPad?
CoderPad是由CoderPad開發的Chrome擴展程式,該擴展的主要功能是“Schedule technical interviews with ease”。
擴展截圖
下載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.                     擴展基本資訊
| 名稱 |   |  
| ID | gggomabkbnhcbmlgfdabcpopfdgkoapn | 
| 官方網址 | 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"
    ]
}  |  |