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": "CodeLens AI",
"short_name": "CodeLens",
"version": "2.0",
"description": "AI-powered code analysis tool for frontend developers - see your code clearly",
"permissions": [
"activeTab",
"storage",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "CodeLens AI"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"devtools_page": "devtools.html",
"content_scripts": [],
"web_accessible_resources": [
{
"resources": [
"help.html",
"privacy.html",
"styles.css",
"styles-responsive.css",
"styles-dark.css"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"minimum_chrome_version": "88"
}