Coding Interview Timer
A timer to track your progress for practice coding interview questions online.
Co je Coding Interview Timer?
Coding Interview Timer je rozšíření Chrome vyvinuté Tek Dev, a jeho hlavní funkcí je „A timer to track your progress for practice coding interview questions online.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Coding Interview Timer
Stáhněte si soubory rozšíření Coding Interview Timer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Coding Interview Timer |
ID | ehlokjblibonmhonjhhmffclbhapkmnk |
Oficiální URL | https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk |
Popis | A timer to track your progress for practice coding interview questions online. |
Velikost souboru | 365 KB |
Počet instalací | 136 |
Aktuální Verze | 0.1.0 |
Poslední Aktualizace | 2020-08-04 |
Datum Vydání | 2020-08-04 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Tek Dev |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.buymeacoffee.com/interviewtimer |
URL Stránky Nápovědy | https://www.buymeacoffee.com/interviewtimer |
Podporované Jazyky | 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\/*" ] } |