Night Shift

Night Shift

Night Shift automatically shifts the colors of your browser content to the warmer end of the color spectrum after dark.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "32": "assets/img/32.png",
    "64": "assets/img/64.png",
    "128": "assets/img/128.png"
  },
  "action": {
    "default_icon": "assets/img/64.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "js/lib/moment.min.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/css/darkmode.css",
        "assets/css/yt.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3,
  "version": "1.1.2"
}