Examine source code of Lazy for Salesforce Deployments

Inspect and view changes in Lazy for Salesforce Deployments 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,
  "name": "Lazy for Salesforce Deployments",
  "version": "2.1.7",
  "description": "Lazy for Salesforce Deployments",
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "js/processor.js",
        "js/manual_processor.js",
        "index.html",
        "updated.html",
        "styles/style.css"
      ],
      "matches": [
        "https://*.my.salesforce.com/*",
        "https://*.lightning.force.com/*",
        "https://*.salesforce-setup.com/*"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon32.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/lib/plotly-2.5.0.min.js",
        "js/constants.js",
        "js/content.js",
        "js/global.js",
        "js/debug.js",
        "js/actions.js"
      ],
      "incognito": "split",
      "matches": [
        "https://*.my.salesforce.com/changemgmt/*",
        "https://*.lightning.force.com/*",
        "https://*.salesforce-setup.com/*"
      ],
      "css": [
        "styles/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "https://*.salesforce-setup.com/changemgmt/monitorDeploymentsDetails.apexp/*",
    "https://*.my.salesforce.com/changemgmt/monitorDeploymentsDetails.apexp/*",
    "https://*.lightning.force.com/lightning/setup/DeployStatus/page/*",
    "https://*.salesforce-setup.com/lightning/setup/DeployStatus/page/*"
  ],
  "permissions": [
    "cookies",
    "webNavigation"
  ]
}