Examine source code of Google Docs Dark Mode (Darker)

Inspect and view changes in Google Docs Dark Mode (Darker) 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",
  "name": "Google Docs Dark Mode (Darker)",
  "version": "1",
  "description": "Google docs for someone who can't stand the light.",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "128.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/dark_mode_docs.css"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ]
}