Tomato Pie

A new UI for Pomodoro Technique. Peek into your working status with ease

Что такое Tomato Pie?

Tomato Pie - это расширение Chrome, разработанное http://t9t.io, и его основная функция - "A new UI for Pomodoro Technique. Peek into your working status with ease".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Tomato Pie

Скачайте файлы расширений Tomato Pie в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Features
- start new tomato from TODO
- red part: 25 minutes for one tomato
- green part: 5 minutes for rest
- show tomatoes of last 12 hours on clock
- view tomato history on calendar
- override default page for new tab
- indicate time on the extension icon
- get notifications when a tomato is finished

Source code and more introductions:

- https://github.com/t9tio/tomato-pie                    

Основная информация о расширении

Название Tomato Pie Tomato Pie
ID gffgechdocgfajkbpinmjjjlkjfjampi
Официальный URL https://chrome.google.com/webstore/detail/tomato-pie/gffgechdocgfajkbpinmjjjlkjfjampi
Описание A new UI for Pomodoro Technique. Peek into your working status with ease
Размер файла 68.03 KB
Количество установок 1,000
Текущая Версия 2.8
Последнее Обновление 2019-10-22
Дата публикации 2019-10-22
Рейтинг 4.27/5 Всего 11 оценок
Разработчик http://t9t.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/t9tio/tomato-pie
URL страницы помощи https://github.com/t9tio/tomato-pie/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "timqian",
    "homepage_url": "https:\/\/github.com\/t9tio\/tomato-pie",
    "name": "Tomato Pie",
    "description": "A new UI for Pomodoro Technique. Peek into your working status with ease",
    "version": "2.8",
    "icons": {
        "128": "assets\/tomato.png"
    },
    "browser_action": {
        "default_icon": "assets\/tomato.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications",
        "background"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    }
}