Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
Что такое Salesforce Marketing Cloud - Email Downloader?
Salesforce Marketing Cloud - Email Downloader - это расширение Chrome, разработанное Edmark Magsalin, и его основная функция - "Lets you download email from Marketing Cloud as HTML file.".
Снимки экрана расширения
Скачать файл CRX расширения Salesforce Marketing Cloud - Email Downloader
Скачайте файлы расширений Salesforce Marketing Cloud - Email Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- 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 Основная информация о расширении
| Название | |
| ID | fagojbpakmkkdeomndkdlaolojmlgmak |
| Официальный URL | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak |
| Описание | Lets you download email from Marketing Cloud as HTML file. |
| Размер файла | 4.49 KB |
| Количество установок | 104 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2020-05-05 |
| Дата публикации | 2020-05-05 |
| Разработчик | Edmark Magsalin |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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
}
]
} | |