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是由https://kyan001.com開發的Chrome擴展程式,該擴展的主要功能是“A minimalist 25 minutes timer. Simple, reliable and easy to use.”。
擴展截圖
下載Timer 25: the Minimalist Timer擴展crx文件
下載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 |
| 官方網址 | 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
} | |