CoderPad
Schedule technical interviews with ease
Qu'est-ce que CoderPad ?
CoderPad est une extension Chrome développée par CoderPad, et sa fonction principale est "Schedule technical interviews with ease".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CoderPad
Téléchargez les fichiers d'extension CoderPad au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | CoderPad |
ID | gggomabkbnhcbmlgfdabcpopfdgkoapn |
URL Officiel | https://chromewebstore.google.com/detail/coderpad/gggomabkbnhcbmlgfdabcpopfdgkoapn |
Description | Schedule technical interviews with ease |
Taille du Fichier | 1.25 MB |
Nombre d'Installations | 331 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2023-10-24 |
Date de Publication | 2022-08-04 |
Développeur | CoderPad |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://coderpad.io |
URL de la Page d'Aide | https://coderpad.io/contact-us |
URL de la Page de Politique de Confidentialité | https://coderpad.io/privacy |
Langues Prises en Charge | 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" ] } |