Dark Mode - Dark Reader for Chrome

Dark Mode - Dark Reader for Chrome

Simple dark mode for Google Chrome. Switch all websites to dark mode as desired. Take care of your eyes by the night theme.

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_desc__",
  "version": "1.0.3",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/logo-turn-on-32.png",
    "64": "assets/static/logo-turn-on-64.png",
    "128": "assets/static/logo-turn-on-128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dark-mode-content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}