Salesforce Marketing Cloud - Email Downloader

Salesforce Marketing Cloud - Email Downloader

Lets you download email from Marketing Cloud as HTML file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Salesforce Marketing Cloud - Email Downloader",
  "description": "Lets you download email from Marketing Cloud as HTML file.",
  "version": "1.0",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mc.s7.exacttarget.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "mc_script.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://content-builder.s7.marketingcloudapps.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-builder_script.js"
      ],
      "all_frames": true
    }
  ]
}