Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
Qu'est-ce que Pomodoro clock ?
Pomodoro clock est une extension Chrome développée par syvo, et sa fonction principale est "A simple pomodoro clock in your browser to hack your productivity.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pomodoro clock
Téléchargez les fichiers d'extension Pomodoro clock 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
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.
Informations de Base sur l'Extension
Nom | Pomodoro clock |
ID | inilkfalkkngchkgodhhcmgbofohnkmg |
URL Officiel | https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg |
Description | A simple pomodoro clock in your browser to hack your productivity. |
Taille du Fichier | 194 KB |
Nombre d'Installations | 734 |
Version Actuelle | 2.5.1 |
Dernière Mise à Jour | 2023-05-05 |
Date de Publication | 2020-06-07 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | syvo |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/macmorning/pomodoro-webext |
URL de la Page d'Aide | https://github.com/macmorning/pomodoro-webext |
URL de la Page de Politique de Confidentialité | https://macmorning.github.io/snowtools-webext |
Langues Prises en Charge | 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" ] } |