├── .editorconfig ├── .eslintrc ├── .github └── FUNDING.yml ├── .gitignore ├── .scss-lint.yml ├── LICENSE ├── README.md ├── blog ├── README.md ├── categories-feature-cn.md ├── categories-feature.md ├── stay_focus_when_doing_tomato-cn.md └── stay_focus_when_doing_tomato.md ├── package.json └── src ├── assets ├── abandonTomato.svg ├── abandonTomatoOnGoing.svg ├── add.svg ├── addTODO.svg ├── defaultIco.svg ├── edit.svg ├── focusing.svg ├── information.svg ├── onGoingTomato.svg ├── rmTODO.svg ├── staticsIco.svg ├── textareaIco.svg ├── tomato.png └── tomato.svg ├── background.js ├── colors.js ├── index.html ├── index.js ├── manifest.json ├── scripts └── create-demo-tomatoes.js ├── store.js ├── styles ├── index.scss ├── listsMenu.scss ├── modal.scss ├── statics.scss ├── switch.scss └── todo.scss └── util ├── generateCalender.js ├── generateClockAnimations.js ├── minuteAnimation.js ├── showSidebar.js └── showTodoListAndTomatoes.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/.gitignore -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/.scss-lint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/README.md -------------------------------------------------------------------------------- /blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/blog/README.md -------------------------------------------------------------------------------- /blog/categories-feature-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/blog/categories-feature-cn.md -------------------------------------------------------------------------------- /blog/categories-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/blog/categories-feature.md -------------------------------------------------------------------------------- /blog/stay_focus_when_doing_tomato-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/blog/stay_focus_when_doing_tomato-cn.md -------------------------------------------------------------------------------- /blog/stay_focus_when_doing_tomato.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/blog/stay_focus_when_doing_tomato.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/abandonTomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/abandonTomato.svg -------------------------------------------------------------------------------- /src/assets/abandonTomatoOnGoing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/abandonTomatoOnGoing.svg -------------------------------------------------------------------------------- /src/assets/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/add.svg -------------------------------------------------------------------------------- /src/assets/addTODO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/addTODO.svg -------------------------------------------------------------------------------- /src/assets/defaultIco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/defaultIco.svg -------------------------------------------------------------------------------- /src/assets/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/edit.svg -------------------------------------------------------------------------------- /src/assets/focusing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/focusing.svg -------------------------------------------------------------------------------- /src/assets/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/information.svg -------------------------------------------------------------------------------- /src/assets/onGoingTomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/onGoingTomato.svg -------------------------------------------------------------------------------- /src/assets/rmTODO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/rmTODO.svg -------------------------------------------------------------------------------- /src/assets/staticsIco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/staticsIco.svg -------------------------------------------------------------------------------- /src/assets/textareaIco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/textareaIco.svg -------------------------------------------------------------------------------- /src/assets/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/tomato.png -------------------------------------------------------------------------------- /src/assets/tomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/assets/tomato.svg -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/background.js -------------------------------------------------------------------------------- /src/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/colors.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/index.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/scripts/create-demo-tomatoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/scripts/create-demo-tomatoes.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/store.js -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/listsMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/styles/listsMenu.scss -------------------------------------------------------------------------------- /src/styles/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/styles/modal.scss -------------------------------------------------------------------------------- /src/styles/statics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/styles/statics.scss -------------------------------------------------------------------------------- /src/styles/switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/styles/switch.scss -------------------------------------------------------------------------------- /src/styles/todo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/styles/todo.scss -------------------------------------------------------------------------------- /src/util/generateCalender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/util/generateCalender.js -------------------------------------------------------------------------------- /src/util/generateClockAnimations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/util/generateClockAnimations.js -------------------------------------------------------------------------------- /src/util/minuteAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/util/minuteAnimation.js -------------------------------------------------------------------------------- /src/util/showSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/util/showSidebar.js -------------------------------------------------------------------------------- /src/util/showTodoListAndTomatoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9tio/tomato-pie/HEAD/src/util/showTodoListAndTomatoes.js --------------------------------------------------------------------------------