Coding Interview Timer
A timer to track your progress for practice coding interview questions online.
¿Qué es Coding Interview Timer?
Coding Interview Timer es una extensión de Chrome desarrollada por Tek Dev, y su función principal es "A timer to track your progress for practice coding interview questions online.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Coding Interview Timer
Descarga archivos de extensión Coding Interview Timer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
A simple tool to track your progress to solve coding/technical interview questions. There is a timer (45 or 30 minutes for easy and medium questions) and a stage progression bar to indicate which problem solving stage you should be.
Información Básica de la Extensión
Nombre | Coding Interview Timer |
ID | ehlokjblibonmhonjhhmffclbhapkmnk |
URL Oficial | https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk |
Descripción | A timer to track your progress for practice coding interview questions online. |
Tamaño del Archivo | 365 KB |
Cantidad de Instalaciones | 136 |
Versión Actual | 0.1.0 |
Última Actualización | 2020-08-04 |
Fecha de Publicación | 2020-08-04 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Tek Dev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.buymeacoffee.com/interviewtimer |
URL de la Página de Ayuda | https://www.buymeacoffee.com/interviewtimer |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Coding Interview Timer", "description": "A timer to track your progress for practice coding interview questions online.", "version": "0.1.0", "homepage_url": "https:\/\/www.buymeacoffee.com\/interviewtimer", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Coding Interview Timer" }, "background": { "scripts": [ ".\/jquery.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*", "https:\/\/www.hackerrank.com\/*" ], "all_frames": true, "js": [ ".\/content.js", ".\/jquery.js" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "index.html", "\/static\/*" ] } |