Coding Interview Timer
A timer to track your progress for practice coding interview questions online.
Coding Interview Timer là gì?
Coding Interview Timer là một tiện ích mở rộng Chrome được phát triển bởi Tek Dev, và tính năng chính của nó là "A timer to track your progress for practice coding interview questions online.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Coding Interview Timer
Tải xuống các tệp mở rộng Coding Interview Timer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Coding Interview Timer |
ID | ehlokjblibonmhonjhhmffclbhapkmnk |
URL Chính Thức | https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk |
Mô tả | A timer to track your progress for practice coding interview questions online. |
Kích Thước Tệp | 365 KB |
Số Lần Cài Đặt | 136 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2020-08-04 |
Ngày Phát Hành | 2020-08-04 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Tek Dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.buymeacoffee.com/interviewtimer |
URL Trang Trợ Giúp | https://www.buymeacoffee.com/interviewtimer |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |