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": "Gmail AI Assistant",
"version": "0.1.0",
"description": "Integrates AI writing assistance into the Gmail compose window.",
"icons": {
"16": "icons\/16x16.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
},
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"*:\/\/mail.google.com\/*",
"https:\/\/generativelanguage.googleapis.com\/*",
"https:\/\/api.anthropic.com\/*",
"https:\/\/api.openai.com\/*",
"https:\/\/api.groq.com\/*",
"https:\/\/api.deepseek.com\/*",
"https:\/\/openrouter.ai\/*"
],
"background": {
"service_worker": "background.bundle.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"css": [
"styles.css"
]
}
],
"options_page": "options.html",
"action": {
"default_title": "Gmail AI Settings",
"default_popup": "options.html"
}
}