CoderPad
Schedule technical interviews with ease
O que é CoderPad?
CoderPad é uma extensão do Chrome desenvolvida por CoderPad, e sua principal característica é "Schedule technical interviews with ease".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CoderPad
Baixe arquivos de extensão CoderPad no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | CoderPad |
ID | gggomabkbnhcbmlgfdabcpopfdgkoapn |
URL Oficial | https://chromewebstore.google.com/detail/coderpad/gggomabkbnhcbmlgfdabcpopfdgkoapn |
Descrição | Schedule technical interviews with ease |
Tamanho do Arquivo | 1.25 MB |
Contagem de Instalações | 331 |
Versão Atual | 1.2.0 |
Última Atualização | 2023-10-24 |
Data de Publicação | 2022-08-04 |
Desenvolvedor | CoderPad |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://coderpad.io |
URL da Página de Ajuda | https://coderpad.io/contact-us |
URL da Página de Política de Privacidade | https://coderpad.io/privacy |
Idiomas Suportados | 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" ] } |