Dark mode - dark theme for Edge

Dark mode - dark theme for Edge

Turn on Dark mode for Edge. Take care of your eyes, and use a dark theme for night and daily browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0.4",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "control-panel.js",
        "dark-mode-content.js"
      ],
      "css": [
        "assets/style-injector.css"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "./options.html",
  "web_accessible_resources": [
    "static/*",
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}