feat(extension): 初始化Chrome扩展项目结构与基础功能

This commit is contained in:
雨霖铃
2025-11-11 01:07:43 +08:00
commit 3ab976b930
14 changed files with 697 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"manifest_version": 3,
"name": "Floating Sidebar with Toggle Button",
"version": "1.1",
"description": "带有可折叠隐藏按钮的浮动侧边栏",
"permissions": ["activeTab", "scripting"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "打开侧边栏"
},
"web_accessible_resources": [
{
"resources": ["sidepanel/*"],
"matches": ["<all_urls>"]
}
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}