Task Break Timer
A simple countdown timer for tasks and breaks
什么是Task Break Timer?
Task Break Timer是由Andrew T开发的Chrome扩展程序,该扩展的主要功能是“A simple countdown timer for tasks and breaks”。
扩展截图
下载Task Break Timer扩展crx文件
下载Task Break Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A pomodoro style task and break timer for the Chrome browser. This fun extension is configurable with time (5 mins, 10, 20, 30, 40 or 50 minutes), sound alerts and speech alerts. The alerts can be set at the beginning, at 5 minutes before ending, and at the ending. * Privacy/Permission: The browser history right is needed because of the "Tabs" permission which is needed to open new tabs by the extension's help/options page. No browsing information is saved locally or transmitted to remote locations. Background: I created this a year+ ago for my own use after learning about the harmful effects of sitting for prolonged periods. Now (2017 June) publishing it on the Chrome Store as part of my portfolio. This is my highly configurable, fun and useful (hopefully) take on the traditional countdown timer. Enjoy!
扩展基本信息
名称 | Task Break Timer |
ID | lgoclpjibbcilaoolkencmdkinhddcme |
官方URL | https://chromewebstore.google.com/detail/task-break-timer/lgoclpjibbcilaoolkencmdkinhddcme |
简介 | A simple countdown timer for tasks and breaks |
文件大小 | 2.88 MB |
安装次数 | 65 |
当前版本 | 1.0 |
更新时间 | 2017-07-20 |
上架时间 | 2017-07-19 |
评分 | 2.00/5 共2次评分 |
开发者 | Andrew T |
付费类型 | free |
扩展官网 | https://taskbreaktimer.blogspot.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Task Break Timer", "description": "A simple countdown timer for tasks and breaks", "version": "1.0", "icons": { "16": "image\/icon16.png", "32": "image\/icon32.png", "48": "image\/icon48.png", "128": "image\/icon128.png" }, "browser_action": { "default_title": "Task Break Timer" }, "permissions": [ "alarms", "contextMenus", "notifications", "storage", "tts" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+1" } }, "reset_timer": { "suggested_key": { "default": "Ctrl+Shift+2" }, "description": "Reset timer" } } } |