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": "LensAI - AI Overview Controller",
"description": "Control and enhance Google AI Overviews with LensAI's smarter model switching and interface options.",
"version": "1.0",
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/www.google.com\/*",
"https:\/\/ai-overview-backend.huyckkid14-projects.workers.dev\/*",
"*:\/\/lens.ai\/*"
],
"icons": {
"128": "icon.png"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*"
],
"js": [
"content.js"
]
},
{
"matches": [
"http:\/\/lens.ai\/*",
"https:\/\/lens.ai\/*"
],
"js": [
"inject-ai-mode.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"icon.png",
"ai-mode.html",
"ai-mode.js",
"css\/github-dark.min.css",
"js\/highlight.min.js",
"js\/marked.min.js"
],
"matches": [
"<all_urls>"
]
}
]
}