Pomodoro Timer

Pomodoro Timer

A simple, customizable Pomodoro timer to keep you on track

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pomodoro Timer",
  "description": "A simple, customizable Pomodoro timer to keep you on track",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "Open Pomodoro Timer"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      },
      "description": "Opens popup.html"
    }
  }
}