Examine source code of NightShift: Advanced Dark Mode Toggle

Inspect and view changes in NightShift: Advanced Dark Mode Toggle 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": "NightShift: Advanced Dark Mode Toggle",
  "version": "1.0",
  "description": "Customize and apply dark mode to any website with advanced features",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "icons/icon-48.png",
    "default_title": "NightShift",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "darkmode.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{62a70044-85cd-48f6-9ee8-3a655649cf9a}"
    }
  }
}