Easy Screen Shader

Easy Screen Shader

Tint Chrome with a soothing hue to ease eye strain and fatigue.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Easy Screen Shader",
  "description": "Tint Chrome with a soothing hue to ease eye strain and fatigue.",
  "version": "0.1.0",
  "action": {
    "default_icon": "images/logo.png",
    "default_popup": "setting.html"
  },
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "/js/pagecolor.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}