Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
什麼是Pomodoro clock?
Pomodoro clock是由syvo開發的Chrome擴展程式,該擴展的主要功能是“A simple pomodoro clock in your browser to hack your productivity.”。
擴展截圖
下載Pomodoro clock擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | inilkfalkkngchkgodhhcmgbofohnkmg |
| 官方網址 | 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"
]
} | |