Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Download email templates easily",
"version": "1.0.4",
"manifest_version": 3,
"name": "eMail HTML Extractor",
"short_name": "eMailHtmlExtractor",
"author": "Lovenish Goyal",
"permissions": [
"activeTab"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png"
},
"icons": {
"16": "icon-34.png",
"48": "icon-128.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
]
}