Pomodoro - MUST
Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.
Cos'è Pomodoro - MUST?
Pomodoro - MUST è un'estensione di Chrome sviluppata da Arminas, e la sua funzione principale è "Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pomodoro - MUST
Scarica i file di estensione Pomodoro - MUST 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
It's not easy for all of us to stay in pomodoro mode. Constant struggle to don't forget on/off timers can be discouraging. At the same time working with pomodoros brings efficiency and greatly reduces procrastination. This extension utilizes already great pomodoro tool tomato.es and adds annoying browser notifications to constantly remind you that you MUST be in pomodoro mode. Advantages: Lightweight: If you close tomato.es tab extension becomes completely idle and is removed from the memory. Just re-open it again and extension will start its work! Safe: No 3rd party calls, your data stays secure in the tab <-> extension communication channel. Full source code can be found on https://github.com/ziogas/pomodoro-must
Informazioni di Base sull'Estensione
Nome | |
ID | fgfijdapfaaflemmapmdegapgmhgfkhh |
URL Ufficiale | https://chrome.google.com/webstore/detail/pomodoro-must/fgfijdapfaaflemmapmdegapgmhgfkhh |
Descrizione | Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode. |
Dimensione del File | 21.79 KB |
Conteggio Installazioni | 83 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2017-06-18 |
Data di Pubblicazione | 2017-06-18 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Arminas |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ziogas/pomodoro-must |
URL della Pagina di Aiuto | https://github.com/ziogas/pomodoro-must |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pomodoro - MUST", "version": "1.0.2", "manifest_version": 2, "description": "Checks active tomato.es session and sends annoying notifications if you're not in pomodoro mode.", "homepage_url": "https:\/\/github.com\/ziogas\/pomodoro-must", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "permissions": [ "notifications", "tabs", "http:\/\/www.tomato.es\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.tomato.es\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |