Pomodor Timer

Pomodor Timer

Pomodoro technique Helps you work or study more effectively

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Pomodor Timer",
  "description": "Pomodoro technique Helps you work or study more effectively",
  "version": "1.0",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "./options.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "logo-16.png",
      "32": "logo-32.png",
      "48": "logo-48.png",
      "128": "logo-128.png"
    }
  },
  "icons": {
    "16": "./logo-16.png",
    "32": "./logo-32.png",
    "48": "./logo-48.png",
    "128": "./logo-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}