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": "Email Reply AI Assistant - MPG ONE", "version": "1.0.0", "description": "Intelligent email response generator powered by MPG ONE", "permissions": [ "activeTab", "storage", "notifications", "webRequest" ], "host_permissions": [ "*:\/\/mail.google.com\/*", "*:\/\/outlook.live.com\/*", "*:\/\/outlook.office365.com\/*", "*:\/\/mail.yahoo.com\/*", "*:\/\/api.x.ai\/*" ], "background": { "service_worker": "background\/service-worker.js" }, "action": { "default_popup": "ui\/popup\/popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "commands": { "generate_response": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" }, "description": "Generate email response" } }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*", "*:\/\/outlook.live.com\/*", "*:\/\/outlook.office365.com\/*", "*:\/\/mail.yahoo.com\/*" ], "js": [ "api\/config.js", "api\/storage.js", "api\/grok-client.js", "content\/email-detector.js", "content\/compose-interface.js" ], "css": [ "ui\/styles\/main.css" ] } ], "web_accessible_resources": [ { "resources": [ "api\/config.js", "api\/storage.js", "api\/grok-client.js", "assets\/*", "icons\/*" ], "matches": [ "<all_urls>" ] } ] }