Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
Wat is Salesforce Marketing Cloud - Email Downloader?
Salesforce Marketing Cloud - Email Downloader is een Chrome-extensie ontwikkeld door Edmark Magsalin, en de belangrijkste functie is "Lets you download email from Marketing Cloud as HTML file.".
Extensie Screenshots
Download het CRX-bestand van de extensie Salesforce Marketing Cloud - Email Downloader
Download Salesforce Marketing Cloud - Email Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
- 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 Basisinformatie over de Extensie
| Naam | |
| ID | fagojbpakmkkdeomndkdlaolojmlgmak |
| Officiële URL | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak |
| Beschrijving | Lets you download email from Marketing Cloud as HTML file. |
| Bestandsgrootte | 4.49 KB |
| Aantal Installaties | 104 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2020-05-05 |
| Publicatiedatum | 2020-05-05 |
| Ontwikkelaar | Edmark Magsalin |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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
}
]
} | |