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.
扩展基本信息
名称 | 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" ] } |