Screen Break

Screen Break

Reminds you to take breaks or look away at regular intervals to reduce eye strain. Users can customize the extension by adjusting the frequency of the interval, sounds, and overall appearance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Screen Break",
  "version": "1.2",
  "description": "Remind you to take breaks at regular intervals to reduce eye strain.",
  "icons": {
    "32": "media/images/coffee32.png"
  },
  "permissions": [
    "notifications"
  ],
  "background": {
    "scripts": [
      "js/background-script.js"
    ]
  },
  "content_script": [
    {
      "matches": [
        "moz-extension://8bf794ae-ba0c-4c07-b5d7-81b36cc83faf/options.html"
      ],
      "js": [
        "js/options.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "media/images/coffee.png",
    "default_title": "Screen Break",
    "default_popup": "popup.html",
    "browser_style": true
  }
}