Inspect and view changes in QuickInsights: AI Text & Webpage Analyzer | Summarize, Respond & More source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "QuickInsights: AI Text & Webpage Analyzer | Summarize, Respond & More",
"description": "Empower users with AI-driven analysis of highlighted text or webpage content for smarter insights and faster responses.",
"version": "1.0.7",
"permissions": [
"contextMenus",
"activeTab",
"scripting",
"notifications",
"storage",
"tabs"
],
"host_permissions": [
"https://mail.google.com/*",
"https://quickinsights-ai.com/*"
],
"oauth2": {
"client_id": "1038698941000-g4bsbi2imbvsomuktahf0eevghr2aq76.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.profile",
"openid",
"email",
"profile",
"https://www.googleapis.com/auth/userinfo.email"
]
},
"background": {
"service_worker": "dist/background.bundle.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icons/quickinsights-favicon.png"
}
},
"icons": {
"16": "icons/quickinsights-favicon-128.png",
"24": "icons/quickinsights-favicon-128.png",
"48": "icons/quickinsights-logo.png",
"128": "icons/quickinsights-favicon-128.png"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"https://mail.google.com/*",
"https://quickinsights-ai.com/*"
],
"js": [
"shared.js",
"dist/content.bundle.js"
],
"css": [
"styles.css"
],
"run_at": "document_start",
"type": "module"
}
],
"web_accessible_resources": [
{
"resources": [
"*",
"icons/*",
"node_modules/pdfjs-dist/legacy/build/pdf.worker.mjs",
"dist/*",
"dist/content.bundle.js",
"popup.html",
"settings.js",
"shared.js"
],
"matches": [
"https://*/*",
"https://quickinsights-ai.com/*"
],
"type": "module"
}
],
"externally_connectable": {
"matches": [
"https://quickinsights-ai.com/*"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}