Dark mode for Edge

Dark mode for Edge

Dark Mode, read at night. Bluelight filter for every website. Relax your eyes at night and day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "0.0.1",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "js/bg.js"
  },
  "action": {
    "default_popup": "options/index.html"
  },
  "options_page": "options/index.html",
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "css": [
        "css/styles.css"
      ],
      "js": [
        "js/satus.js",
        "js/content-scripts/core.js",
        "js/content-scripts/custom-css.js",
        "js/content-scripts/dynamic-theme.js",
        "js/content-scripts/filters.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "scripting",
    "storage",
    "tabs"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}