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”。
擴展截圖
下載Tomato Pie擴展crx文件
下載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
擴展基本資訊
名稱 | |
ID | gffgechdocgfajkbpinmjjjlkjfjampi |
官方網址 | 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" } } |