Pomodoro Timer
A new-tab page that helps you focus on completing your work.
Was ist Pomodoro Timer?
Pomodoro Timer ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "A new-tab page that helps you focus on completing your work.".
Erweiterungsscreenshots
Pomodoro Timer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pomodoro Timer-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
A new tab page that helps you focus on completing your goals at work. Use your countdown timer to keep yourself on track by setting a goal for how long you want to work on each task. The extension icon shows a badge that displays how much time you have remaining to complete your current task. This extension also records the number of tasks you've completed every day (called "streaks") so you can compare your productivity every day to your average working day.
Grundlegende Informationen zur Erweiterung
Name | Pomodoro Timer |
ID | hcfahcbjaolpfghelfanfepghajfbkdg |
Offizielle URL | https://chromewebstore.google.com/detail/pomodoro-timer/hcfahcbjaolpfghelfanfepghajfbkdg |
Beschreibung | A new-tab page that helps you focus on completing your work. |
Dateigröße | 1.54 MB |
Installationsanzahl | 811 |
Aktuelle Version | 0.0.0.3 |
Letztes Update | 2017-10-21 |
Veröffentlichungsdatum | 2017-10-21 |
Bewertung | 1.80/5 Insgesamt 5 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pomodoro Timer", "version": "0.0.0.3", "description": "A new-tab page that helps you focus on completing your work.", "icons": { "16": "images\/streak16.png", "32": "images\/streak32.png", "48": "images\/streak48.png", "128": "images\/streak128.png" }, "browser_action": { "default_icon": { "16": "images\/streak16.png", "32": "images\/streak32.png", "48": "images\/streak48.png", "128": "images\/streak128.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "chrome_url_overrides": { "newtab": "newTab.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "incognito": "spanning", "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "storage" ] } |