feat: 添加密码管理功能,包括 API、数据库支持和前端界面

This commit is contained in:
2026-01-23 23:55:08 +08:00
parent 1a3bbac9ff
commit a8c96d84f0
43 changed files with 1957 additions and 110 deletions

View File

@@ -1,12 +1,24 @@
{
"manifest_version": 3,
"name": "BrowserBookmark",
"version": "0.1.0",
"version": "1.0.3",
"action": {
"default_title": "Bookmarks",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"options_page": "options.html",
"permissions": ["storage", "tabs"],
"host_permissions": ["<all_urls>"]
"host_permissions": ["<all_urls>"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle",
"type": "module"
}
]
}