Light mode

Light mode

Prefer light mode when dark theme is not defined.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Light mode",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "Prefer light mode when dark theme is not defined.",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "content.css"
      ]
    }
  ]
}