Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
Cos'è Salesforce Marketing Cloud - Email Downloader?
Salesforce Marketing Cloud - Email Downloader è un'estensione di Chrome sviluppata da Edmark Magsalin, e la sua funzione principale è "Lets you download email from Marketing Cloud as HTML file.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Salesforce Marketing Cloud - Email Downloader
Scarica i file di estensione Salesforce Marketing Cloud - Email Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
- 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
Informazioni di Base sull'Estensione
Nome | Salesforce Marketing Cloud - Email Downloader |
ID | fagojbpakmkkdeomndkdlaolojmlgmak |
URL Ufficiale | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak |
Descrizione | Lets you download email from Marketing Cloud as HTML file. |
Dimensione del File | 4.49 KB |
Conteggio Installazioni | 104 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-05-05 |
Data di Pubblicazione | 2020-05-05 |
Sviluppatore | Edmark Magsalin |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } ] } |