Tomato Pie

Tomato Pie

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

Merlin
Additional files are visible only to premium users

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