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" ] } |