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_ext_name__",
"version": "2.3",
"description": "__MSG_ext_description__",
"icons": {
"16": "plane.png",
"48": "plane.png",
"128": "plane.png"
},
"action": {
"default_icon": {
"16": "plane.png",
"48": "plane.png",
"128": "plane.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"permissions": [
"storage",
"scripting",
"sidePanel",
"notifications",
"tabs",
"identity"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"https:\/\/outlook.live.com\/*",
"https:\/\/outlook.office.com\/*",
"https:\/\/outlook.office365.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"service.js",
"contentScript.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/outlook.live.com\/*",
"https:\/\/outlook.office.com\/*",
"https:\/\/outlook.office365.com\/*"
],
"js": [
"outlookContentScript.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/ai--extension.web.app\/login.html"
],
"js": [
"login-content-script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"plane.png",
"speech-to-text.html",
"speech-to-text.js",
"service.js",
"google_icon.svg",
"material-icons.woff2",
"utils\/sanitize.js"
],
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/outlook.live.com\/*",
"https:\/\/outlook.office.com\/*",
"https:\/\/outlook.office365.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com; font-src 'self' data: https:\/\/fonts.gstatic.com; img-src 'self' data: https:; connect-src 'self' https:\/\/ai-gmail-extension.vercel.app"
},
"default_locale": "en"
}