CoderPad
Schedule technical interviews with ease
Was ist CoderPad?
CoderPad ist eine Chrome-Erweiterung, die von CoderPad entwickelt wurde, und ihr Hauptmerkmal ist "Schedule technical interviews with ease".
Erweiterungsscreenshots
CoderPad-Erweiterungs-CRX-Datei herunterladen
Laden Sie CoderPad-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gggomabkbnhcbmlgfdabcpopfdgkoapn |
| Offizielle URL | https://chromewebstore.google.com/detail/coderpad/gggomabkbnhcbmlgfdabcpopfdgkoapn |
| Beschreibung | Schedule technical interviews with ease |
| Dateigröße | 1.25 MB |
| Installationsanzahl | 331 |
| Aktuelle Version | 1.2.0 |
| Letztes Update | 2023-10-24 |
| Veröffentlichungsdatum | 2022-08-04 |
| Entwickler | CoderPad |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://coderpad.io |
| Hilfeseite URL | https://coderpad.io/contact-us |
| URL der Datenschutzrichtlinien-Seite | https://coderpad.io/privacy |
| Unterstützte Sprachen | 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"
]
} | |