Free Gmail tool that generates entire emails, powered by ChatGPT.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "EzMail.AI - ChatGPT for Gmail",
"version": "0.0.3",
"description": "Free Gmail tool that generates entire emails, powered by ChatGPT.",
"short_name": "EzMail.AI",
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"import-content.js"
],
"run_at": "document_end"
}
],
"host_permissions": [
"https://mail.google.com/",
"https://*.openai.com/*"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"tabs",
"scripting",
"storage",
"management"
],
"action": {
"default_icon": {
"16": "assets/EZ_MAIL_AI/icons/ezmail_16_normal.png",
"24": "assets/EZ_MAIL_AI/icons/ezmail_32_normal.png",
"32": "assets/EZ_MAIL_AI/icons/ezmail_32_normal.png"
},
"default_title": "Tooltip title"
},
"icons": {
"16": "assets/EZ_MAIL_AI/icons/ezmail_16_normal.png",
"32": "assets/EZ_MAIL_AI/icons/ezmail_32_normal.png",
"48": "assets/EZ_MAIL_AI/icons/ezmail_48_normal.png",
"128": "assets/EZ_MAIL_AI/icons/ezmail_128_normal.png"
},
"web_accessible_resources": [
{
"resources": [
"chunks/*-*.js",
"content.js"
],
"matches": [
"https://*/*",
"https://mail.google.com/*",
"https://*.openai.com/*"
]
}
]
}