Pomodoro clock extension

Pomodoro clock extension

A simple pomodoro clock to hack your productivity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Pomodoro clock",
  "version": "2.5.1",
  "description": "A simple pomodoro clock in your browser to hack your productivity.",
  "homepage_url": "https://github.com/macmorning/pomodoro-webext",
  "icons": {
    "48": "icons/clock-48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "browser_action": {
    "default_title": "Pomodoro",
    "default_icon": {
      "48": "icons/clock-48.png"
    },
    "default_popup": "pomodoro.html"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{710ec9db-6f38-4798-90b9-7486b2285bfb}"
    }
  }
}