Salesforce Marketing Cloud - Email Downloader
Lets you download email from Marketing Cloud as HTML file.
Salesforce Marketing Cloud - Email Downloader là gì?
Salesforce Marketing Cloud - Email Downloader là một tiện ích mở rộng Chrome được phát triển bởi Edmark Magsalin, và tính năng chính của nó là "Lets you download email from Marketing Cloud as HTML file.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Salesforce Marketing Cloud - Email Downloader
Tải xuống các tệp mở rộng Salesforce Marketing Cloud - Email Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
- 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Salesforce Marketing Cloud - Email Downloader |
ID | fagojbpakmkkdeomndkdlaolojmlgmak |
URL Chính Thức | https://chromewebstore.google.com/detail/salesforce-marketing-clou/fagojbpakmkkdeomndkdlaolojmlgmak |
Mô tả | Lets you download email from Marketing Cloud as HTML file. |
Kích Thước Tệp | 4.49 KB |
Số Lần Cài Đặt | 104 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-05-05 |
Ngày Phát Hành | 2020-05-05 |
Nhà Phát Triển | Edmark Magsalin |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |