CoderPad
Schedule technical interviews with ease
Что такое CoderPad?
CoderPad - это расширение Chrome, разработанное CoderPad, и его основная функция - "Schedule technical interviews with ease".
Снимки экрана расширения
Скачать файл CRX расширения CoderPad
Скачайте файлы расширений 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" ] } |