Dark mode for your browser

Dark mode for your browser

Dark Mode can set all sites in your browser to dark mode or pleasant darkening modes

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": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "action": {
    "default_icon": "img/64.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "dark.js",
        "shift.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3,
  "version": "0.0.19"
}