Eye Guardian | Blue Light Filter

Eye Guardian | Blue Light Filter

Blue light filter 🛡️ and break timer for eye protection. Reduces eye strain, encourages regular breaks, improves health & sleep.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Eye Guardian | Blue Light Filter",
  "description": "__MSG_appDescription__",
  "version": "2.4.2",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "images/eye-guardian-48.png"
    }
  },
  "icons": {
    "16": "images/eye-guardian-16.png",
    "48": "images/eye-guardian-48.png",
    "64": "images/eye-guardian-64.png",
    "128": "images/eye-guardian-128.png",
    "256": "images/eye-guardian-256.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "notifications",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "startFilter.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "sounds/first-notification.mp3",
        "sounds/second-notification.mp3"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ],
      "use_dynamic_url": false
    }
  ],
  "default_locale": "en"
}