Pomodoro Timer
A new-tab page that helps you focus on completing your work.
Qu'est-ce que Pomodoro Timer ?
Pomodoro Timer est une extension Chrome développée par Unknown, et sa fonction principale est "A new-tab page that helps you focus on completing your work.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pomodoro Timer
Téléchargez les fichiers d'extension Pomodoro 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 new tab page that helps you focus on completing your goals at work. Use your countdown timer to keep yourself on track by setting a goal for how long you want to work on each task. The extension icon shows a badge that displays how much time you have remaining to complete your current task. This extension also records the number of tasks you've completed every day (called "streaks") so you can compare your productivity every day to your average working day.
Informations de Base sur l'Extension
Nom | Pomodoro Timer |
ID | hcfahcbjaolpfghelfanfepghajfbkdg |
URL Officiel | https://chromewebstore.google.com/detail/pomodoro-timer/hcfahcbjaolpfghelfanfepghajfbkdg |
Description | A new-tab page that helps you focus on completing your work. |
Taille du Fichier | 1.54 MB |
Nombre d'Installations | 811 |
Version Actuelle | 0.0.0.3 |
Dernière Mise à Jour | 2017-10-21 |
Date de Publication | 2017-10-21 |
Évaluation | 1.80/5 Total 5 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pomodoro Timer", "version": "0.0.0.3", "description": "A new-tab page that helps you focus on completing your work.", "icons": { "16": "images\/streak16.png", "32": "images\/streak32.png", "48": "images\/streak48.png", "128": "images\/streak128.png" }, "browser_action": { "default_icon": { "16": "images\/streak16.png", "32": "images\/streak32.png", "48": "images\/streak48.png", "128": "images\/streak128.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "chrome_url_overrides": { "newtab": "newTab.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "incognito": "spanning", "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "storage" ] } |