Wikipedia Dark Mode

Wikipedia Dark Mode

View the Wikipedia website with a dark color scheme instead of the default light scheme.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wikipedia Dark Mode",
  "version": "0.1.2",
  "description": "View the Wikipedia website with a dark color scheme instead of the default light scheme.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.wikipedia.org/*"
      ]
    }
  ]
}