Files
item-scraper/manifest.json
2026-03-12 09:08:15 -04:00

38 lines
837 B
JSON

{
"manifest_version": 3,
"name": "商品信息抓取助手",
"version": "1.0",
"description": "使用 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": "商品信息抓取助手",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}