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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } } |