Examine source code of DuckDuckGo's Dark Theme at night (unofficial)

Inspect and view changes in DuckDuckGo's Dark Theme at night (unofficial) 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
{
  "manifest_version": 2,
  "name": "DuckDuckGo's Dark Theme at night",
  "version": "1.1.6resigned1",
  "homepage_url": "https://github.com/josh0196/DDGAutoDarkTheme",
  "author": "Josh Bruegger",
  "description": "Switches to DuckDuckGo's dark theme at from a during a specified time window and switches back to desired light theme otherwise.",
  "icons": {
    "48": "icons/ddgtt_icon.svg",
    "96": "icons/ddgtt_icon.svg"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "options_ui": {
    "page": "html/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://duckduckgo.com/*"
      ],
      "js": [
        "js/ddgtt.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{9fdfe69f-98dd-434c-bd06-d18bbc8ff38c}"
    }
  }
}