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": "ChatGPT Add-in for Gmail\u2122, Docs\u2122, Slides\u2122 & Sheets\u2122 - AI Perfect Assistant",
"description": "Use ChatGPT in Gmail\u2122, Docs\u2122, Slides\u2122 & Sheets\u2122. Summarize emails, write drafts, polish presentations and generate content instantly",
"version": "1.9",
"permissions": [
"sidePanel",
"contextMenus",
"storage"
],
"icons": {
"16": "16.png",
"128": "128.png"
},
"action": {
"default_icon": "logo.png",
"default_title": "Click to open AI Perfect Assistant"
},
"side_panel": {
"default_path": "index.html"
},
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"extensionInjector.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"gmailJsLoader.js",
"extension.js",
"gmailJsLoader.js.map",
"extension.js.map"
],
"matches": [
"<all_urls>"
]
}
]
}