27 lines
588 B
JSON
Raw Normal View History

2022-04-08 17:04:13 +08:00
{
"name": "签签世界",
"description": "云书签管理平台",
2022-04-08 17:04:13 +08:00
"version": "1.0",
2022-04-11 17:42:00 +08:00
"manifest_version": 3,
"permissions": ["contextMenus", "storage"],
"action": {
"default_popup": "popup/index.html"
},
2022-04-08 17:04:13 +08:00
"icons": {
"48": "static/icons/favicon.png",
"128": "static/icons/favicon.png"
2022-04-08 17:04:13 +08:00
},
"background": {
2022-04-11 17:42:00 +08:00
"service_worker": "background.js"
2022-04-08 17:04:13 +08:00
},
"options_ui": {
2022-04-11 17:42:00 +08:00
"page": "options/index.html"
2022-04-08 17:04:13 +08:00
},
"content_scripts": [
{
"matches": ["*://*/*"],
2022-04-11 17:42:00 +08:00
"js": ["static/js/axios.min.js", "static/js/config.js", "static/js/content.js"]
2022-04-08 17:04:13 +08:00
}
]
}