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 |
公式URL | 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 |
Eメール | [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 } ] } |