Pure Eye

Pure Eye

Improves readability of text and reduces eye strain of bright colors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Pure Eye",
  "description": "Improves readability of text and reduces eye strain of bright colors.",
  "version": "4.0.0",
  "background": {
    "service_worker": "events/base/base.js"
  },
  "icons": {
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "events/content/content.js"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "tabs",
    "storage",
    "scripting",
    "declarativeNetRequest",
    "browsingData",
    "cookies",
    "background",
    "notifications",
    "contextMenus"
  ],
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup/popup.html",
    "default_title": "Pure Eye"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}