Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
Wat is Pomodoro clock?
Pomodoro clock is een Chrome-extensie ontwikkeld door syvo, en de belangrijkste functie is "A simple pomodoro clock in your browser to hack your productivity.".
Extensie Screenshots
Download het CRX-bestand van de extensie Pomodoro clock
Download Pomodoro clock-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | inilkfalkkngchkgodhhcmgbofohnkmg |
| Officiële URL | https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg |
| Beschrijving | A simple pomodoro clock in your browser to hack your productivity. |
| Bestandsgrootte | 194 KB |
| Aantal Installaties | 734 |
| Huidige Versie | 2.5.1 |
| Laatst Bijgewerkt | 2023-05-05 |
| Publicatiedatum | 2020-06-07 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | syvo |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/macmorning/pomodoro-webext |
| Help Pagina-URL | https://github.com/macmorning/pomodoro-webext |
| URL van de Privacybeleid Pagina | https://macmorning.github.io/snowtools-webext |
| Ondersteunde Talen | 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"
]
} | |