Examine source code of Dark Mode Lite

Inspect and view changes in Dark Mode Lite 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dark Mode Lite",
  "description": "A lightweight dark mode",
  "version": "2.6.0",
  "web_accessible_resources": [
    {
      "resources": [
        "browserAction/popup.js"
      ],
      "matches": [],
      "extension_ids": []
    }
  ],
  "commands": {
    "keyboard-toggle-dark-mode": {
      "suggested_key": {
        "windows": "Ctrl+Shift+K",
        "mac": "Command+Shift+K",
        "chromeos": "Ctrl+Shift+K",
        "linux": "Ctrl+Shift+K"
      },
      "description": "Toggle Dark Mode"
    }
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "vendor/browser-polyfill.min.js",
        "contentScripts/main.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background/main.js"
  },
  "icons": {
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_icon": {
      "96": "icons/icon_96.png"
    },
    "default_popup": "browserAction/popup.html",
    "default_title": "Dark Mode Lite"
  }
}