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是由Edmark Magsalin开发的Chrome扩展程序,该扩展的主要功能是“Lets you download email from Marketing Cloud as HTML file.”。

扩展截图

screenshot

下载Salesforce Marketing Cloud - Email Downloader扩展crx文件

下载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                    

扩展基本信息

名称 Salesforce Marketing Cloud - Email Downloader Salesforce Marketing Cloud - Email Downloader
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
        }
    ]
}