Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
Cos'è Pomodoro clock?
Pomodoro clock è un'estensione di Chrome sviluppata da syvo, e la sua funzione principale è "A simple pomodoro clock in your browser to hack your productivity.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pomodoro clock
Scarica i file di estensione Pomodoro clock in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Pomodoro clock |
ID | inilkfalkkngchkgodhhcmgbofohnkmg |
URL Ufficiale | https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg |
Descrizione | A simple pomodoro clock in your browser to hack your productivity. |
Dimensione del File | 194 KB |
Conteggio Installazioni | 734 |
Versione Corrente | 2.5.1 |
Ultimo Aggiornamento | 2023-05-05 |
Data di Pubblicazione | 2020-06-07 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | syvo |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/macmorning/pomodoro-webext |
URL della Pagina di Aiuto | https://github.com/macmorning/pomodoro-webext |
URL della Pagina della Politica sulla Privacy | https://macmorning.github.io/snowtools-webext |
Lingue Supportate | 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" ] } |