Lazy for Salesforce Deployments

Lazy for Salesforce Deployments

Lazy for Salesforce Deployments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lazy for Salesforce Deployments",
  "version": "2.1.4",
  "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/*"
      ]
    }
  ],
  "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/*"
      ],
      "css": [
        "styles/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "https://*.my.salesforce.com/changemgmt/monitorDeploymentsDetails.apexp/*",
    "https://*.lightning.force.com/lightning/setup/DeployStatus/page/*"
  ],
  "permissions": [
    "cookies",
    "webNavigation"
  ]
}