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", "name": "Email Writer Bot", "description": "AI-powered email reply generator", "version": "1.0", "manifest_version": 3, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "*:\/\/mail.google.com\/*", "https:\/\/generativelanguage.googleapis.com\/*" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/mail.google.com\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "icons\/*", "content.css" ], "matches": [ "*:\/\/mail.google.com\/*" ] } ], "icons": { "16": "icons\/icon16.png", "128": "icons\/icon128.png" }, "action": { "default_title": "Email Writer Bot", "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png" } }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" } }