Code Logger
Code logger is a Google Chrome extension productivity and developer tool that allows the user to time log the length of a coding…
Code Logger là gì?
Code Logger là một tiện ích mở rộng Chrome được phát triển bởi Matthew Rosendin, và tính năng chính của nó là "Code logger is a Google Chrome extension productivity and developer tool that allows the user to time log the length of a coding…".
Ả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 Code Logger
Tải xuống các tệp mở rộng Code Logger 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
Code logger is a Google Chrome extension productivity and developer tool that allows the user to time log the length of a coding session. This extension is especially applicable for developers who work on a per-hour basis, as they can manage the amount of time spent on a project with this extension running in the background. Code logger also sends desktop notifications to users after an hour has passed, alerting them to take a break. Break notifications can be adjusted to be sent every hour (by default), two hours, or three hours. This concept is based on the Pomodoro Technique, which states that frequent breaks can increase mental agility. Use: to start a session, simply click main button. The timer will run in the background if you close Chrome. Notifications will be sent at the specified time intervals. To stop the timer, either click on the desktop notification or click the main button again. Immediately after ending a session, you will see the session time added to your weekly time spent metric, as well as the all-time spent metric. Credit to Artur Stolear for help with the development of this extension.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Code Logger |
ID | didmagpkffbnidppbbeoifjeldbbeemb |
URL Chính Thức | https://chromewebstore.google.com/detail/code-logger/didmagpkffbnidppbbeoifjeldbbeemb |
Mô tả | Code logger is a Google Chrome extension productivity and developer tool that allows the user to time log the length of a coding… |
Kích Thước Tệp | 61.06 KB |
Số Lần Cài Đặt | 12 |
Phiên Bản Hiện Tại | 0.0.0.4 |
Cập Nhật Lần Cuối | 2015-04-10 |
Ngày Phát Hành | 2015-04-09 |
Nhà Phát Triển | Matthew Rosendin |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "description": "__MSG_description__", "version": "0.0.0.4", "permissions": [ "storage", "notifications", "alarms", "background" ], "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_title": "__MSG_name__", "default_popup": "popup.html" }, "background": { "scripts": [ "scripts\/time.js", "scripts\/promised.js", "background.js" ], "persistent": false }, "content_scripts": [], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [], "default_locale": "en" } |