Coding Interview Timer
A timer to track your progress for practice coding interview questions online.
Coding Interview Timerとは何ですか?
Coding Interview TimerはTek Devによって開発されたChromeの拡張機能で、その主な機能は「A timer to track your progress for practice coding interview questions online.」です。
拡張機能のスクリーンショット
Coding Interview Timer拡張機能のCRXファイルをダウンロード
Coding Interview Timer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Coding Interview Timer |
ID | ehlokjblibonmhonjhhmffclbhapkmnk |
公式URL | https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk |
説明 | A timer to track your progress for practice coding interview questions online. |
ファイルサイズ | 365 KB |
インストール数 | 136 |
現在のバージョン | 0.1.0 |
最終更新日 | 2020-08-04 |
公開日 | 2020-08-04 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Tek Dev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.buymeacoffee.com/interviewtimer |
ヘルプページのURL | https://www.buymeacoffee.com/interviewtimer |
対応言語 | 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\/*" ] } |