Night Shift

Night Shift

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "browser_action": {
    "default_icon": "img/64.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/lib/moment.min.js",
        "js/storage.js",
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "manifest_version": 2,
  "version": "1.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}