2026-01-21 23:09:33 +08:00
|
|
|
{
|
|
|
|
|
"manifest_version": 3,
|
|
|
|
|
"name": "BrowserBookmark",
|
2026-01-24 01:34:24 +08:00
|
|
|
"version": "1.0.5",
|
2026-01-21 23:09:33 +08:00
|
|
|
"action": {
|
|
|
|
|
"default_title": "Bookmarks",
|
|
|
|
|
"default_popup": "popup.html"
|
|
|
|
|
},
|
2026-01-23 23:55:08 +08:00
|
|
|
"background": {
|
|
|
|
|
"service_worker": "background.js",
|
|
|
|
|
"type": "module"
|
|
|
|
|
},
|
2026-01-21 23:09:33 +08:00
|
|
|
"options_page": "options.html",
|
|
|
|
|
"permissions": ["storage", "tabs"],
|
2026-01-23 23:55:08 +08:00
|
|
|
"host_permissions": ["<all_urls>"],
|
|
|
|
|
"content_scripts": [
|
|
|
|
|
{
|
|
|
|
|
"matches": ["<all_urls>"],
|
|
|
|
|
"js": ["content.js"],
|
|
|
|
|
"run_at": "document_idle",
|
|
|
|
|
"type": "module"
|
|
|
|
|
}
|
|
|
|
|
]
|
2026-01-21 23:09:33 +08:00
|
|
|
}
|