Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Ellie: Your Professional AI Email Assistant",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"version": "2.5.0",
"description": "Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT.",
"permissions": [
"scripting",
"storage",
"activeTab"
],
"options_ui": {
"browser_style": true,
"page": "src/options/index.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://app.fastmail.com/mail/*",
"https://mail.google.com/mail/*",
"https://outlook.live.com/mail/*",
"https://outlook.office.com/mail/*",
"https://outlook.office365.com/mail/*"
],
"js": [
"src/clients/common/index.js"
],
"css": [
"src/clients/common/common.css"
],
"run_at": "document_start"
},
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"src/clients/gmail/libs/jquery-3.6.1.min.js",
"src/clients/gmail/libs/gmail.js",
"src/clients/gmail/libs/postal.js"
],
"css": [
"src/clients/gmail/styles.css"
],
"run_at": "document_start"
},
{
"matches": [
"https://mail.google.com/mail/*"
],
"js": [
"src/clients/gmail/index.js"
],
"css": [
"src/clients/gmail/styles.css"
],
"run_at": "document_end"
},
{
"matches": [
"https://outlook.live.com/mail/*",
"https://outlook.office.com/mail/*",
"https://outlook.office365.com/mail/*"
],
"js": [
"src/clients/outlook/index.js",
"src/clients/outlook/network-interceptor.js"
],
"css": [
"src/clients/outlook/styles.css"
],
"run_at": "document_end"
},
{
"matches": [
"https://app.fastmail.com/mail/*"
],
"js": [
"src/clients/fastmail/index.js"
],
"css": [
"src/clients/fastmail/styles.css"
],
"run_at": "document_end"
}
],
"manifest_version": 3,
"action": {
"default_popup": "src/popup/popup.html"
},
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}