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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - 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
        }
    ]
}