Examine source code of Super Dark Mode for Edge

Inspect and view changes in Super Dark Mode for 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
{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "data/icons/on/16.png",
      "32": "data/icons/on/32.png",
      "48": "data/icons/on/48.png",
      "64": "data/icons/on/64.png"
    },
    "default_title": "Dark Mode"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "data/content_script/inject.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "data/icons/on/16.png",
    "32": "data/icons/on/32.png",
    "48": "data/icons/on/48.png",
    "64": "data/icons/on/64.png",
    "128": "data/icons/on/128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "options_page": "data/options/options.html",
  "permissions": [
    "storage",
    "<all_urls>",
    "contextMenus",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "__MSG_short_name__",
  "version": "5.0.1.0",
  "web_accessible_resources": [
    "data/content_script/*.css"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}