Pomodoro Timer PRO

Pomodoro Timer PRO

Pomodoro Timer is a free and great tool that can help you boost your productivity and quality of your work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "version": "1.0.1",
  "permissions": [
    "notifications",
    "storage",
    "idle",
    "activeTab",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "img/red/icon48.png",
    "img/red/icon128.png"
  ],
  "browser_action": {
    "default_title": "Pomodoro Timer",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "16": "img/red/icon16.png",
    "32": "img/red/icon32.png",
    "48": "img/red/icon48.png",
    "128": "img/red/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}