{ "manifest_version": 3, "name": "Citation Verifier", "version": "1.0.0", "description": "Verify citations and detect AI hallucinations in research documents", "permissions": [ "activeTab", "storage" ], "host_permissions": [ "" ], "background": { "service_worker": "src/background.ts" }, "content_scripts": [ { "matches": [""], "js": ["src/content.ts"], "run_at": "document_idle" } ], "action": { "default_popup": "src/popup.html", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }