Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
Co to jest Salesforce Marketing Cloud - Email Downloader?
Salesforce Marketing Cloud - Email Downloader to rozszerzenie Chrome opracowane przez Edmark Magsalin, a jego główną funkcją jest „Lets you download email from Marketing Cloud as HTML file.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Salesforce Marketing Cloud - Email Downloader
Pobierz pliki rozszerzeń Salesforce Marketing Cloud - Email Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        - 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                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | fagojbpakmkkdeomndkdlaolojmlgmak | 
| Oficjalny URL | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak | 
| Opis | Lets you download email from Marketing Cloud as HTML file. | 
| Rozmiar pliku | 4.49 KB | 
| Liczba instalacji | 104 | 
| Aktualna Wersja | 1.0 | 
| Ostatnia Aktualizacja | 2020-05-05 | 
| Data Publikacji | 2020-05-05 | 
| Deweloper | Edmark Magsalin | 
| [email protected] | |
| Typ Płatności | free | 
| Obsługiwane Języki | 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
        }
    ]
}  |  |