Night Mode Shift

Night Mode Shift

All websites in the current window can be switched to night mode with just one click, and colors and their depth can be specified.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.0.2",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "author": "Seiri",
  "background": {
    "service_worker": "assets/js/background-wrapper.js"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "assets/icons/icon16.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "assets/icons/icon128.png"
    }
  }
}