CoderPad

Schedule technical interviews with ease

CoderPad là gì?

CoderPad là một tiện ích mở rộng Chrome được phát triển bởi CoderPad, và tính năng chính của nó là "Schedule technical interviews with ease".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CoderPad

Tải xuống các tệp mở rộng CoderPad dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CoderPad CoderPad
ID gggomabkbnhcbmlgfdabcpopfdgkoapn
URL Chính Thức https://chromewebstore.google.com/detail/coderpad/gggomabkbnhcbmlgfdabcpopfdgkoapn
Mô tả Schedule technical interviews with ease
Kích Thước Tệp 1.25 MB
Số Lần Cài Đặt 331
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-10-24
Ngày Phát Hành 2022-08-04
Nhà Phát Triển CoderPad
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://coderpad.io
URL Trang Trợ Giúp https://coderpad.io/contact-us
URL Trang Chính Sách Bảo Mật https://coderpad.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}