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 |
| 官方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"
]
} | |