Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "1.0.0", "description": "__MSG_shortDesc__", "default_locale": "en", "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "permissions": [ "activeTab", "tabs", "scripting", "storage", "sidePanel" ], "host_permissions": [ "https:\/\/mail.google.com\/*", "https:\/\/outlook.live.com\/*", "https:\/\/outlook.office.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/outlook.live.com\/*", "https:\/\/outlook.office.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "contentScript.css", "assets\/icons\/*.svg", "assets\/fonts\/*" ], "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/outlook.live.com\/*", "https:\/\/outlook.office.com\/*" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "default_title": "AI Writing Assistant" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'" }, "side_panel": { "default_path": "sidePanel.html" } }