Dark Mode for Edge

Dark Mode for Edge

Dark theme for your edge browser will apply dark theme instead of eye straining theme .

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "background": {
    "persistent": true,
    "scripts": [
      "data/rules/rules.js",
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js",
      "js/tvt/back.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    },
    "default_title": "Edge Dark Mode"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "data/content_script/inject.css"
      ],
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "data/rules/rules.js",
        "data/content_script/inject.js",
        "data/content_script/resources/native.js",
        "js/youApi.js",
        "js/tvt/jquery.js",
        "js/tvt/content.js"
      ],
      "match_about_blank": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Dark theme for your edge browser will apply dark theme instead of eye straining theme .",
  "homepage_url": "https://fonexsoftware.com/dark-mode.html",
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "manifest_version": 2,
  "name": "Dark Mode for Edge",
  "offline_enabled": true,
  "options_ui": {
    "open_in_tab": true,
    "page": "data/options/options.html"
  },
  "permissions": [
    "webRequest",
    "storage",
    "<all_urls>",
    "contextMenus",
    "webRequestBlocking",
    "unlimitedStorage"
  ],
  "short_name": "dark-mode",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "1.0.1",
  "web_accessible_resources": [
    "data/content_script/custom/*",
    "data/content_script/general/*"
  ]
}