Pomodoro Chrome Extension

Pomodoro Chrome Extension

This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pomodoro Chrome Extension",
  "short_name": "Pomodoro",
  "description": "This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.",
  "icons": {
    "128": "/img/logo_red_128.png"
  },
  "action": {
    "default_icon": "/img/logo_red_19.png",
    "default_popup": "/pages/iframe/index.html"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "extension_ids": []
    }
  ],
  "version": "2.0.0.3"
}