Break Timer
Enforce periodic breaks to prevent RSI / eye strain.
Break Timerคืออะไร?
Break Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tomjwatson และคุณลักษณะหลักของมันคือ "Enforce periodic breaks to prevent RSI / eye strain."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Break Timer
ดาวน์โหลดไฟล์ส่วนขยาย Break Timer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
------------------------------------ Break Timer is now deprecated in favour of the standalone desktop app, which is available at https://breaktimer.app. ------------------------------------ Break Timer allows you to set up customizable breaks and will remind you to take them. Taking breaks whilst working or studying is crucial in preventing RSI, eye-strain and tiredness. Break Timer allows you to customize: * How long your breaks are and how often you wish to have them * Whether to be reminded with a simple notification or a fullscreen break window * Working hours so you are only reminded when you want to be. * Colour and text of break window and notifications * Whether to play a gong sound at break start and end * Whether to allow skipping, postponing and ending of breaks Break Timer will also intelligently restart your break countdown (optionally) when it detects that you have not been using the computer for some amount of time. ----------------------- BreakTimer is free and open source. The code is available at https://github.com/tom-james-watson/breaktimer and contributions and bug reports are very welcome.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Break Timer |
ID | hklkdbpicdmlpoiellngedpejjkmapei |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/break-timer/hklkdbpicdmlpoiellngedpejjkmapei |
คำอธิบาย | Enforce periodic breaks to prevent RSI / eye strain. |
ขนาดไฟล์ | 896 KB |
จำนวนการติดตั้ง | 25,770 |
เวอร์ชันปัจจุบัน | 1.2.1 |
อัปเดตครั้งล่าสุด | 2020-06-24 |
วันที่เผยแพร่ | 2020-06-24 |
คะแนน | 4.37/5 รวมทั้งหมด 138 คะแนน |
ผู้พัฒนา | tomjwatson |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://breaktimer.app |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/tom-james-watson/privacy-policy/blob/main/README.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.2.1", "name": "Break Timer", "description": "Enforce periodic breaks to prevent RSI \/ eye strain.", "icons": { "48": "image\/icon48.png", "128": "image\/icon128.png" }, "browser_action": { "default_icon": { "19": "image\/icon19.png", "38": "image\/icon38.png" }, "default_title": "Break Time", "default_popup": "templates\/popup.html" }, "background": { "scripts": [ "js\/vendor\/moment.min.js", "js\/background.js" ] }, "permissions": [ "storage", "alarms", "notifications", "idle" ], "minimum_chrome_version": "32", "options_ui": { "page": "templates\/settings.html", "chrome_style": true } } |