Tomato Pie

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

Tomato Pie란 무엇입니까?

Tomato Pie은(는) http://t9t.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A new UI for Pomodoro Technique. Peek into your working status with ease"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Tomato Pie 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}