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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
        }
    ]
}