Download Salesforce Change Set package.xml

Download Salesforce Change Set package.xml

This extension will add Download button on Inbound/Outbound Change Set page allowing you to download package.xml of its components.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Satrang Technologies",
  "background": {
    "scripts": [
      "back.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/cloud-download-2x.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.4.1.min.js",
        "background.js"
      ],
      "matches": [
        "*://*.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp*",
        "*://*.my.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp*",
        "*://*.salesforce.com/changemgmt/outboundChangeSetDetailPage.apexp*",
        "*://*.my.salesforce.com/changemgmt/outboundChangeSetDetailPage.apexp*"
      ],
      "all_frames": true
    }
  ],
  "description": "This extension will add Download button on Inbound/Outbound Change Set page allowing you to download package.xml of its components.",
  "homepage_url": "https://www.satrangtech.com/",
  "icons": {
    "8": "img/cloud-download.png",
    "16": "img/cloud-download-2x.png",
    "24": "img/cloud-download-3x.png",
    "32": "img/cloud-download-4x.png",
    "48": "img/cloud-download-6x.png",
    "64": "img/cloud-download-8x.png"
  },
  "manifest_version": 2,
  "name": "Download Salesforce Change Set package.xml",
  "permissions": [
    "*://*.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp*",
    "*://*.my.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp*",
    "*://*.salesforce.com/changemgmt/outboundChangeSetDetailPage.apexp*",
    "*://*.my.salesforce.com/changemgmt/outboundChangeSetDetailPage.apexp*"
  ],
  "short_name": "Download Salesforce Change Set package.xml.",
  "version": "6.0.0",
  "web_accessible_resources": [
    "background.js"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}