37 lines
764 B
JSON
37 lines
764 B
JSON
{
|
|
"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": [
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "src/background.ts"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"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"
|
|
}
|
|
}
|