Night Mode - Dark Theme

Night Mode - Dark Theme

A universal dark theme. Night Mode is an extension that helps you quickly turn the screen (browser) to dark at night time. Toolbar button serves as an On & Off switch which enables you to easily and quickly turn the extension On or Off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Night Mode - Dark Theme",
  "version": "1.0.3",
  "description": "If you want light or if you want dark with just one click they are there and apart",
  "icons": {
    "48": "chromeicon.png",
    "128": "chromeicon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "112.0",
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Night Mode"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "type": "module",
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}