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",
"manifest_version": 3,
"name": "XTrace Memory",
"version": "1.0.2",
"description": "AI-powered Gmail reply assistant that drafts email replies automatically",
"permissions": [
"storage",
"identity"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"http:\/\/localhost:3000\/*",
"https:\/\/mem.xtrace.ai\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/lovable.dev\/*"
],
"background": {
"service_worker": "assets\/background.js",
"type": "module"
},
"icons": {
"16": "icons\/logo-16.png",
"48": "icons\/logo-48.png",
"128": "icons\/logo-128.png"
},
"action": {
"default_popup": "assets\/popup.html",
"default_title": "X-Mem: Draft Reply with AI",
"default_icon": {
"16": "icons\/logo-16.png",
"48": "icons\/logo-48.png",
"128": "icons\/logo-128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"assets\/gmail-content-script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/lovable.dev\/*"
],
"js": [
"assets\/chatgpt-content-script.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/*.png"
],
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/lovable.dev\/*"
]
}
]
}