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是由Edmark Magsalin開發的Chrome擴展程式,該擴展的主要功能是“Lets you download email from Marketing Cloud as HTML file.”。
擴展截圖
下載Salesforce Marketing Cloud - Email Downloader擴展crx文件
下載Salesforce Marketing Cloud - Email Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- 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 |
ID | fagojbpakmkkdeomndkdlaolojmlgmak |
官方網址 | 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 } ] } |