Tomato Pie

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

Vad är Tomato Pie?

Tomato Pie är en Chrome-tillägg utvecklad av http://t9t.io, och dess huvudfunktion är "A new UI for Pomodoro Technique. Peek into your working status with ease".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Tomato Pie-förlängningens CRX-fil

Ladda ner Tomato Pie-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Tomato Pie Tomato Pie
ID gffgechdocgfajkbpinmjjjlkjfjampi
Officiell webbadress https://chrome.google.com/webstore/detail/tomato-pie/gffgechdocgfajkbpinmjjjlkjfjampi
Beskrivning A new UI for Pomodoro Technique. Peek into your working status with ease
Filstorlek 68.03 KB
Antal Installationer 1,000
Aktuell Version 2.8
Senast Uppdaterad 2019-10-22
Publiceringsdatum 2019-10-22
Betyg 4.27/5 Totalt 11 Betyg
Utvecklare http://t9t.io
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/t9tio/tomato-pie
Hjälpsida URL https://github.com/t9tio/tomato-pie/issues
Stödda Språk 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"
    }
}