Coding Interview Timer
A timer to track your progress for practice coding interview questions online.
Was ist Coding Interview Timer?
Coding Interview Timer ist eine Chrome-Erweiterung, die von Tek Dev entwickelt wurde, und ihr Hauptmerkmal ist "A timer to track your progress for practice coding interview questions online.".
Erweiterungsscreenshots
Coding Interview Timer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Coding Interview Timer-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
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ehlokjblibonmhonjhhmffclbhapkmnk |
| Offizielle URL | https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk |
| Beschreibung | A timer to track your progress for practice coding interview questions online. |
| Dateigröße | 365 KB |
| Installationsanzahl | 136 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2020-08-04 |
| Veröffentlichungsdatum | 2020-08-04 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Tek Dev |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.buymeacoffee.com/interviewtimer |
| Hilfeseite URL | https://www.buymeacoffee.com/interviewtimer |
| Unterstützte Sprachen | 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\/*"
]
} | |