Examine source code of Dark Mode for ServiceNow

Inspect and view changes in Dark Mode for ServiceNow 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,
  "default_locale": "en",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description_short__",
  "version": "3.0.32",
  "author": "__MSG_extension_author_name__",
  "homepage_url": "https://growthdot.com",
  "icons": {
    "48": "icons/icon.png",
    "96": "icons/icon@2x.png"
  },
  "action": {
    "default_title": "__MSG_extension_default_title__",
    "default_icon": {
      "19": "icons/icon19.png",
      "20": "icons/icon20.png",
      "38": "icons/icon38.png",
      "48": "icons/icon.png",
      "96": "icons/icon@2x.png"
    },
    "default_popup": "code/settings/app.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.google.com/*",
        "https://*.youtube.com/*",
        "https://*.facebook.com/*",
        "https://twitter.com/*",
        "https://*.linkedin.com/*",
        "https://slack.com/*",
        "https://*.microsoft.com/*"
      ],
      "js": [
        "code/client/client.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "webNavigation"
  ],
  "background": {
    "service_worker": "code/background.js"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}