2022-04-08 17:04:13 +08:00
|
|
|
{
|
2022-04-15 15:45:19 +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"],
|
2022-04-17 12:10:51 +08:00
|
|
|
"chrome_url_overrides": {
|
|
|
|
"newtab": "tab/index.html"
|
|
|
|
},
|
2022-04-11 17:42:00 +08:00
|
|
|
"action": {
|
2022-04-17 14:53:44 +08:00
|
|
|
"default_popup": "popup/index.html",
|
|
|
|
"default_icon": {
|
|
|
|
"48": "static/icons/favicon.png",
|
|
|
|
"128": "static/icons/favicon.png"
|
|
|
|
}
|
2022-04-11 17:42:00 +08:00
|
|
|
},
|
2022-04-08 17:04:13 +08:00
|
|
|
"icons": {
|
2022-04-15 15:45:19 +08:00
|
|
|
"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
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|