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": "Console Log Error AI Fixer",
"version": "1.5.2",
"description": "Smart console logger that persists errors across reloads, groups duplicates, and provides AI-powered fixes. 100% Private & Local.",
"permissions": [
"storage",
"tabs",
"alarms"
],
"host_permissions": [
"<all_urls>",
"file:\/\/\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "Console Log Error AI Fixer"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"externally_connectable": {
"matches": [
"http:\/\/localhost:*\/*",
"http:\/\/127.0.0.1:*\/*",
"https:\/\/*.lovable.app\/*"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>",
"file:\/\/\/*"
],
"js": [
"capture.js"
],
"run_at": "document_start",
"world": "MAIN"
},
{
"matches": [
"<all_urls>",
"file:\/\/\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
}