39 lines
856 B
JSON
39 lines
856 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Smart Survey Filler AI",
|
|
"version": "1.0.0",
|
|
"description": "Automatically fill surveys using advanced AI models (Gemini, Groq, DeepSeek).",
|
|
"permissions": [
|
|
"storage",
|
|
"activeTab",
|
|
"scripting",
|
|
"contextMenus"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "public/icons/icon16.png",
|
|
"48": "public/icons/icon48.png",
|
|
"128": "public/icons/icon128.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content-script.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "public/icons/icon16.png",
|
|
"48": "public/icons/icon48.png",
|
|
"128": "public/icons/icon128.png"
|
|
}
|
|
}
|