Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
Pomodoro clock là gì?
Pomodoro clock là một tiện ích mở rộng Chrome được phát triển bởi syvo, và tính năng chính của nó là "A simple pomodoro clock in your browser to hack your productivity.".
Ả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 Pomodoro clock
Tải xuống các tệp mở rộng Pomodoro clock 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
Use this extension to organize your work using the well-known pomodoro timer technique: work X minutes, have an Y minutes break, and so on. You can configure the duration of each streak as it suits your own pace. The extension will display a notification and play a short ring at the end of each timer. The source code is available on Github along with a few explanations. Please don't use reviews to submit your issues :) You can post them on Github, like enhancement requests. All constructive comments are welcome.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pomodoro clock |
ID | inilkfalkkngchkgodhhcmgbofohnkmg |
URL Chính Thức | https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg |
Mô tả | A simple pomodoro clock in your browser to hack your productivity. |
Kích Thước Tệp | 194 KB |
Số Lần Cài Đặt | 734 |
Phiên Bản Hiện Tại | 2.5.1 |
Cập Nhật Lần Cuối | 2023-05-05 |
Ngày Phát Hành | 2020-06-07 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | syvo |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/macmorning/pomodoro-webext |
URL Trang Trợ Giúp | https://github.com/macmorning/pomodoro-webext |
URL Trang Chính Sách Bảo Mật | https://macmorning.github.io/snowtools-webext |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pomodoro clock", "version": "2.5.1", "description": "A simple pomodoro clock in your browser to hack your productivity.", "homepage_url": "https:\/\/github.com\/macmorning\/pomodoro-webext", "icons": { "48": "icons\/clock-48.png" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html" }, "browser_action": { "default_title": "Pomodoro", "default_icon": { "48": "icons\/clock-48.png" }, "default_popup": "pomodoro.html" }, "permissions": [ "storage", "notifications", "alarms" ], "optional_permissions": [ "downloads" ] } |