Dark Theme - Dark Reader for Chrome

Dark Theme - Dark Reader for Chrome

Switch all websites to dark mode. Take care of your eyes by using a dark theme to change screen brightness.

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.7",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-popup.js",
        "dark-theme-content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "options_page": "./settings.html",
  "commands": {
    "open-popup": {
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "windows": "Alt+E",
        "mac": "Command+E"
      },
      "description": "Activate/Disable"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}