Take a Break by Eye Care Plus

Take a Break by Eye Care Plus

Reminds you to take a break.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Take a Break by Eye Care Plus",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Reminds you to take a break.",
  "icons": {
    "19": "images/blue19.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/blue19.png",
    "default_popup": "popup.html",
    "default_title": "Take a Break by Eye Care Plus"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "notifications",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "js/*",
    "css/*",
    "images/*",
    "sounds/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}