Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
Was ist Pomodoro clock?
Pomodoro clock ist eine Chrome-Erweiterung, die von syvo entwickelt wurde, und ihr Hauptmerkmal ist "A simple pomodoro clock in your browser to hack your productivity.".
Erweiterungsscreenshots
Pomodoro clock-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pomodoro clock-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | inilkfalkkngchkgodhhcmgbofohnkmg |
| Offizielle URL | https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg |
| Beschreibung | A simple pomodoro clock in your browser to hack your productivity. |
| Dateigröße | 194 KB |
| Installationsanzahl | 734 |
| Aktuelle Version | 2.5.1 |
| Letztes Update | 2023-05-05 |
| Veröffentlichungsdatum | 2020-06-07 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | syvo |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/macmorning/pomodoro-webext |
| Hilfeseite URL | https://github.com/macmorning/pomodoro-webext |
| URL der Datenschutzrichtlinien-Seite | https://macmorning.github.io/snowtools-webext |
| Unterstützte Sprachen | 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"
]
} | |