Pomodoro Timer: To Boost Your Productivity

Pomodoro Timer: To Boost Your Productivity

Use the pomodoro technique to boost your productivity. This is a simple timer that helps keep you on track as you work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pomodoro Timer: To Boost Your Productivity",
  "description": "Use the pomodoro technique to boost your productivity. This is a simple timer that helps keep you on track as you work.",
  "version": "0.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "notifications"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/tomato16.png",
      "32": "/images/tomato32.png",
      "48": "/images/tomato48.png",
      "128": "/images/tomato128.png"
    }
  },
  "web_accessible_resources": [
    "/images/tomato128.png"
  ],
  "icons": {
    "16": "/images/tomato16.png",
    "32": "/images/tomato32.png",
    "48": "/images/tomato48.png",
    "128": "/images/tomato128.png"
  }
}