Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
Was ist Salesforce Marketing Cloud - Email Downloader?
Salesforce Marketing Cloud - Email Downloader ist eine Chrome-Erweiterung, die von Edmark Magsalin entwickelt wurde, und ihr Hauptmerkmal ist "Lets you download email from Marketing Cloud as HTML file.".
Erweiterungsscreenshots
Salesforce Marketing Cloud - Email Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Salesforce Marketing Cloud - Email Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
- 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
Grundlegende Informationen zur Erweiterung
Name | Salesforce Marketing Cloud - Email Downloader |
ID | fagojbpakmkkdeomndkdlaolojmlgmak |
Offizielle URL | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak |
Beschreibung | Lets you download email from Marketing Cloud as HTML file. |
Dateigröße | 4.49 KB |
Installationsanzahl | 104 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-05-05 |
Veröffentlichungsdatum | 2020-05-05 |
Entwickler | Edmark Magsalin |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |