Examine source code of Simple Dark Mode

Inspect and view changes in Simple Dark Mode 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": "Simple Dark Mode",
  "version": "1.0.0",
  "manifest_version": 2,
  "author": "Julian Hecker",
  "description": "Show any website in dark mode with a single click, using simple CSS Filters.",
  "icons": {
    "16": "icons/icon16.png",
    "36": "icons/icon36.png",
    "48": "icons/icon48.png",
    "60": "icons/icon60.png",
    "144": "icons/icon144.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Simple Dark Mode"
  }
}