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 Summary",
"version": "1.0.1",
"description": "Effortlessly summarize Gmail messages with AI. Get clear, concise insights from lengthy emails and save valuable time.",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/mail.google.com\/*"
],
"background": {
"service_worker": "src\/js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"src\/js\/content.js"
],
"css": [
"src\/css\/styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src\/js\/i18n.js"
],
"matches": [
"https:\/\/mail.google.com\/*"
]
}
],
"action": {
"default_popup": "src\/html\/popup.html",
"default_icon": {
"16": "src\/assets\/icon16.png",
"48": "src\/assets\/icon48.png",
"128": "src\/assets\/icon128.png"
}
},
"icons": {
"16": "src\/assets\/icon16.png",
"48": "src\/assets\/icon48.png",
"128": "src\/assets\/icon128.png"
}
}