Pomodoro Timer
A new-tab page that helps you focus on completing your work.
Что такое Pomodoro Timer?
Pomodoro Timer - это расширение Chrome, разработанное Unknown, и его основная функция - "A new-tab page that helps you focus on completing your work.".
Снимки экрана расширения
Скачать файл CRX расширения Pomodoro Timer
Скачайте файлы расширений Pomodoro Timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Pomodoro Timer |
ID | hcfahcbjaolpfghelfanfepghajfbkdg |
Официальный URL | https://chromewebstore.google.com/detail/pomodoro-timer/hcfahcbjaolpfghelfanfepghajfbkdg |
Описание | A new-tab page that helps you focus on completing your work. |
Размер файла | 1.54 MB |
Количество установок | 811 |
Текущая Версия | 0.0.0.3 |
Последнее Обновление | 2017-10-21 |
Дата публикации | 2017-10-21 |
Рейтинг | 1.80/5 Всего 5 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |