Task Break Timer
A simple countdown timer for tasks and breaks
Qu'est-ce que Task Break Timer ?
Task Break Timer est une extension Chrome développée par Andrew T, et sa fonction principale est "A simple countdown timer for tasks and breaks".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Task Break Timer
Téléchargez les fichiers d'extension Task Break Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Task Break Timer |
ID | lgoclpjibbcilaoolkencmdkinhddcme |
URL Officiel | https://chromewebstore.google.com/detail/task-break-timer/lgoclpjibbcilaoolkencmdkinhddcme |
Description | A simple countdown timer for tasks and breaks |
Taille du Fichier | 2.88 MB |
Nombre d'Installations | 65 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2017-07-20 |
Date de Publication | 2017-07-19 |
Évaluation | 2.00/5 Total 2 Évaluations |
Développeur | Andrew T |
Type de Paiement | free |
Site Web de l'Extension | https://taskbreaktimer.blogspot.com/ |
Langues Prises en Charge | 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" } } } |