Tomato Timer

Tomato Timer

A pomodoro technique timer!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tomato Timer",
  "short_name": "TomatoTimer",
  "description": "A pomodoro technique timer!",
  "version": "2.1.2",
  "browser_action": {
    "default_icon": "images/pomodoro-inactive-19.png",
    "default_title": "Tomato Timer",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "notifications",
    "alarms",
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "tomato.js"
    ]
  },
  "icons": {
    "16": "images/pomodoro-inactive-19.png",
    "48": "images/pomodoro-inactive-48.png",
    "128": "images/pomodoro-inactive-128.png"
  },
  "options_page": "options.html"
}