Timer 25: the Minimalist Timer
A minimalist 25 minutes timer. Simple, reliable and easy to use.
Timer 25: the Minimalist Timerคืออะไร?
Timer 25: the Minimalist Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kyan001.com และคุณลักษณะหลักของมันคือ "A minimalist 25 minutes timer. Simple, reliable and easy to use."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Timer 25: the Minimalist Timer
ดาวน์โหลดไฟล์ส่วนขยาย Timer 25: the Minimalist Timer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
> Focus on one dedicated function, and make it great.
• 1 click to set a 25 Minute Timer.
• Perfect for Pomodoro Technique / Tomato Timer.
• Saving your time and lifting your efficiency now!
• Nearly 0 Memory/CPU consumption with a better experience!
• Open source software
How To Use:
• START from a fixed 25:00.
• STOP at 0:00 and inform you by a popup alert/notification.
• When counting down, click again to CANCEL the timer.
Extra Functions:
• Enter "timer" in Chrome's address bar and press TAB to start a non-25 minutes timer.
• [Optional] Play a sound when time's up.
• [Optional] Click is needed to dismiss the notification.
Code & Bug Report:
• Github Project Page: https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25
• Help & Bug Report: https://github.com/kyan001/WebExtensions/issues
• Updates: https://github.com/kyan001/WebExtensions/blob/master/ChromeExt_Timer25/UPDATES.md ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | gmdbcklinofignhfmibchnmgjcocccbh |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/timer-25-the-minimalist-t/gmdbcklinofignhfmibchnmgjcocccbh |
| คำอธิบาย | A minimalist 25 minutes timer. Simple, reliable and easy to use. |
| ขนาดไฟล์ | 85.77 KB |
| จำนวนการติดตั้ง | 10,631 |
| เวอร์ชันปัจจุบัน | 1.15.5 |
| อัปเดตครั้งล่าสุด | 2020-08-25 |
| วันที่เผยแพร่ | 2020-05-02 |
| คะแนน | 4.62/5 รวมทั้งหมด 42 คะแนน |
| ผู้พัฒนา | https://kyan001.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://www.kyan001.com |
| URL หน้าช่วยเหลือ | https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25 |
| ภาษาที่รองรับ | de,en,fr,es,it,pl,ru,zh-CN,zh-TW,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"version": "1.15.5",
"short_name": "Timer25",
"description": "__MSG_extDesc__",
"manifest_version": 2,
"icons": {
"16": "Timer_16.png",
"128": "Timer_128.png"
},
"omnibox": {
"keyword": "Timer"
},
"background": {
"scripts": [
"background.js"
]
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"notifications",
"storage"
],
"options_ui": {
"page": "options.html",
"chrome_style": true,
"open_in_tab": false
},
"browser_action": {
"default_icon": "Timer.png",
"default_title": "Timer 25"
},
"default_locale": "en",
"offline_enabled": true
} | |