Examine source code of Screen Shader Dark Mode for Microsoft Edge™

Inspect and view changes in Screen Shader Dark Mode for Microsoft Edge™ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Screen Shader Dark Mode for Microsoft Edgeâ„¢",
  "description": "no more eye strain bright websites",
  "version": "3.2.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "./icons/icon16.png",
    "24": "./icons/icon24.png",
    "32": "./icons/icon32.png",
    "48": "./icons/icon48.png",
    "64": "./icons/icon64.png",
    "128": "./icons/icon128.png",
    "256": "./icons/icon256.png",
    "512": "./icons/icon512.png"
  },
  "homepage_url": "https://google.com/dark-mode.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "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/vendor/tinycolor.js",
        "data/content_script/resources/native.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icons": {
      "16": "./icons/icon16.png",
      "24": "./icons/icon24.png",
      "32": "./icons/icon32.png",
      "48": "./icons/icon48.png",
      "64": "./icons/icon64.png",
      "128": "./icons/icon128.png",
      "256": "./icons/icon256.png",
      "512": "./icons/icon512.png"
    },
    "default_title": "dark mode"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "scripting",
    "activeTab",
    "storage",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "data/content_script/custom/*",
        "data/content_script/general/*",
        "data/content_script/page_context/inject.js"
      ]
    }
  ],
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}