Salesforce Marketing Cloud - Email Downloader

Lets you download email from Marketing Cloud as HTML file.

Co je Salesforce Marketing Cloud - Email Downloader?

Salesforce Marketing Cloud - Email Downloader je rozšíření Chrome vyvinuté Edmark Magsalin, a jeho hlavní funkcí je „Lets you download email from Marketing Cloud as HTML file.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Salesforce Marketing Cloud - Email Downloader

Stáhněte si soubory rozšíření Salesforce Marketing Cloud - Email Downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        - 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                    

Základní Informace o Rozšíření

Název Salesforce Marketing Cloud - Email Downloader Salesforce Marketing Cloud - Email Downloader
ID fagojbpakmkkdeomndkdlaolojmlgmak
Oficiální URL https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak
Popis Lets you download email from Marketing Cloud as HTML file.
Velikost souboru 4.49 KB
Počet instalací 104
Aktuální Verze 1.0
Poslední Aktualizace 2020-05-05
Datum Vydání 2020-05-05
Vývojář Edmark Magsalin
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
        }
    ]
}