2022-04-17 14:53:44 +08:00

34 lines
761 B
JSON

{
"name": "签签世界",
"description": "云书签管理平台",
"version": "1.0",
"manifest_version": 3,
"permissions": ["contextMenus", "storage"],
"chrome_url_overrides": {
"newtab": "tab/index.html"
},
"action": {
"default_popup": "popup/index.html",
"default_icon": {
"48": "static/icons/favicon.png",
"128": "static/icons/favicon.png"
}
},
"icons": {
"48": "static/icons/favicon.png",
"128": "static/icons/favicon.png"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options/index.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["static/js/axios.min.js", "static/js/config.js", "static/js/content.js"]
}
]
}