Tomato Pie
A new UI for Pomodoro Technique. Peek into your working status with ease
Apa itu Tomato Pie?
Tomato Pie adalah ekstensi Chrome yang dikembangkan oleh http://t9t.io, dan fitur utamanya adalah "A new UI for Pomodoro Technique. Peek into your working status with ease".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tomato Pie
Unduh file ekstensi Tomato Pie dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | gffgechdocgfajkbpinmjjjlkjfjampi |
URL Resmi | https://chrome.google.com/webstore/detail/tomato-pie/gffgechdocgfajkbpinmjjjlkjfjampi |
Deskripsi | A new UI for Pomodoro Technique. Peek into your working status with ease |
Ukuran File | 68.03 KB |
Jumlah Instalasi | 1,000 |
Versi Saat Ini | 2.8 |
Terakhir Diperbarui | 2019-10-22 |
Tanggal Publikasi | 2019-10-22 |
Penilaian | 4.27/5 Total 11 Penilaian |
Pengembang | http://t9t.io |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/t9tio/tomato-pie |
URL Halaman Bantuan | https://github.com/t9tio/tomato-pie/issues |
Bahasa yang Didukung | 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" } } |