work/mvp/browser-extension/manifest.json
2025-12-17 22:30:44 +08:00

38 lines
790 B
JSON

{
"manifest_version": 3,
"name": "我的浏览器扩展",
"version": "1.0.0",
"description": "一个简单的浏览器扩展示例",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png"
},
"default_title": "点击打开扩展"
},
"permissions": [
"storage",
"activeTab",
"bookmarks",
"webNavigation"
],
"background": {
"service_worker": "background/background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content/content.js"],
"css": ["content/content.css"],
"run_at": "document_idle"
}
]
}