Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
Pomodoro clockคืออะไร?
Pomodoro clock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย syvo และคุณลักษณะหลักของมันคือ "A simple pomodoro clock in your browser to hack your productivity."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pomodoro clock
ดาวน์โหลดไฟล์ส่วนขยาย Pomodoro clock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Pomodoro clock |
ID | inilkfalkkngchkgodhhcmgbofohnkmg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg |
คำอธิบาย | A simple pomodoro clock in your browser to hack your productivity. |
ขนาดไฟล์ | 194 KB |
จำนวนการติดตั้ง | 734 |
เวอร์ชันปัจจุบัน | 2.5.1 |
อัปเดตครั้งล่าสุด | 2023-05-05 |
วันที่เผยแพร่ | 2020-06-07 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | syvo |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/macmorning/pomodoro-webext |
URL หน้าช่วยเหลือ | https://github.com/macmorning/pomodoro-webext |
URL หน้านโยบายความเป็นส่วนตัว | https://macmorning.github.io/snowtools-webext |
ภาษาที่รองรับ | 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" ] } |