LeetCode Timer
LeetCode Timer is a Chrome extension for timing LeetCode problems
LeetCode Timer là gì?
LeetCode Timer là một tiện ích mở rộng Chrome được phát triển bởi briankosw, và tính năng chính của nó là "LeetCode Timer is a Chrome extension for timing LeetCode problems".
Ả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 LeetCode Timer
Tải xuống các tệp mở rộng LeetCode 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
LeetCode Timer is an extension for timing LeetCode Problems. Whether you're practicing time management while solving problems or you simply want to understand how long you're taking, LeetCode Timer provides an easy way to time yourself - no more going back and forth between your phone's timer and your problem! Features: The extension will embed a stopwatch, right next to the Run Code and Submit buttons, into any LeetCode problem you're solving. The following are some of the features that will be added soon™: • ⏱ Switch between timer mode (count down) and stopwatch mode (count up) • ⏳ Set time limits - customizable based on problem difficulty - for timer mode • 💾 Save time spent when submission is accepted
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LeetCode Timer |
ID | djgmechpkngjklelhkninhhhibghmhkj |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcode-timer/djgmechpkngjklelhkninhhhibghmhkj |
Mô tả | LeetCode Timer is a Chrome extension for timing LeetCode problems |
Kích Thước Tệp | 548 KB |
Số Lần Cài Đặt | 57 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2022-02-23 |
Ngày Phát Hành | 2022-02-20 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | briankosw |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/briankosw/leetcode-timer |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LeetCode Timer", "description": "LeetCode Timer is a Chrome extension for timing LeetCode problems", "homepage_url": "https:\/\/github.com\/briankosw\/leetcode-timer", "version": "0.2.1", "icons": { "128": "dist\/images\/lct.png" }, "content_scripts": [ { "matches": [ "*:\/\/leetcode.com\/problems\/*" ], "js": [ "dist\/browser-polyfill.js", "dist\/content_script.js" ], "css": [ "dist\/css\/styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "dist\/images\/dark-timer.svg", "dist\/images\/option.svg", "dist\/images\/reset.svg" ], "matches": [ "https:\/\/leetcode.com\/*" ] } ] } |