Files
item-scraper/manifest.json
Julian Freeman 5bae19f80a init
2026-03-11 12:11:38 -04:00

26 lines
526 B
JSON

{
"manifest_version": 3,
"name": "AI Hardware Sourcing Assistant",
"version": "1.0",
"description": "Extract structured product data using Gemini AI.",
"permissions": [
"sidePanel",
"scripting",
"storage",
"activeTab"
],
"host_permissions": [
"https://generativelanguage.googleapis.com/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "Open Side Panel"
}
}