Simple Screen Break

Simple Screen Break

Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Simple Screen Break",
  "version": "0.0.2",
  "description": "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.",
  "icons": {
    "16": "/img/logo_16.png",
    "32": "/img/logo_32.png",
    "48": "/img/logo_48.png",
    "128": "/img/logo_128.png"
  },
  "action": {
    "default_title": "Simple Screen Break Popup",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content/main.js"
      ],
      "css": [
        "content/main.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "storage"
  ]
}