Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
Apa itu Salesforce Marketing Cloud - Email Downloader?
Salesforce Marketing Cloud - Email Downloader adalah ekstensi Chrome yang dikembangkan oleh Edmark Magsalin, dan fitur utamanya adalah "Lets you download email from Marketing Cloud as HTML file.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Salesforce Marketing Cloud - Email Downloader
Unduh file ekstensi Salesforce Marketing Cloud - Email Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
- 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
Informasi Dasar Ekstensi
Nama | Salesforce Marketing Cloud - Email Downloader |
ID | fagojbpakmkkdeomndkdlaolojmlgmak |
URL Resmi | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak |
Deskripsi | Lets you download email from Marketing Cloud as HTML file. |
Ukuran File | 4.49 KB |
Jumlah Instalasi | 104 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2020-05-05 |
Tanggal Publikasi | 2020-05-05 |
Pengembang | Edmark Magsalin |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } ] } |