Wikipedia night mode

Wikipedia night mode

Wikipedia night mode allows you to work more comfortably on the Wikipedia website in the dark or in low light

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "manifest_version": 2,
  "version": "0.0.26",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "img/enable.png",
    "default_title": "__MSG_short_name__"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/*",
        "*://*.mediawiki.org/*",
        "*://*.wikimedia.org/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "icons": {
    "48": "img/enable.png"
  },
  "web_accessible_resources": [
    "/img/128x128.png"
  ]
}