Break Timer

Break Timer

Enforce periodic breaks to prevent RSI / eye strain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.2.1",
  "name": "Break Timer",
  "description": "Enforce periodic breaks to prevent RSI / eye strain.",
  "icons": {
    "48": "image/icon48.png",
    "128": "image/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "image/icon19.png",
      "38": "image/icon38.png"
    },
    "default_title": "Break Time",
    "default_popup": "templates/popup.html"
  },
  "background": {
    "scripts": [
      "js/vendor/moment.min.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "idle"
  ],
  "minimum_chrome_version": "32",
  "options_ui": {
    "page": "templates/settings.html",
    "chrome_style": true
  }
}