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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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