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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lets you download email from Marketing Cloud as HTML file."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Salesforce Marketing Cloud - Email Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
- 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 |
ईमेल | [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 } ] } |