Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
What is Salesforce Marketing Cloud - Email Downloader?
Salesforce Marketing Cloud - Email Downloader is a Chrome extension developed by Edmark Magsalin, and its main feature is "Lets you download email from Marketing Cloud as HTML file.".
Extension Screenshots
Download Salesforce Marketing Cloud - Email Downloader Extension CRX File
Download Salesforce Marketing Cloud - Email Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
- Select and copy email codes inside MC - Make sure you are in the Content tab and Code View (if using template-based email) - Click the download button next to the codes - The download name should be same as the email name, in the screenshot's case, 317 Pizza Newsletter.html
Extension Basic Information
Name | Salesforce Marketing Cloud - Email Downloader |
ID | fagojbpakmkkdeomndkdlaolojmlgmak |
Official URL | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak |
Description | Lets you download email from Marketing Cloud as HTML file. |
File Size | 4.49 KB |
Installation Count | 104 |
Current Version | 1.0 |
Last Updated | 2020-05-05 |
Publish Date | 2020-05-05 |
Developer | Edmark Magsalin |
[email protected] | |
Payment Type | free |
Supported Languages | en |
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 } ] } |