27 lines
593 B
JSON
27 lines
593 B
JSON
{
|
|
"name": "bookmark-chrome",
|
|
"description": "A Vue.js web extension",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"permissions": ["contextMenus", "storage"],
|
|
"action": {
|
|
"default_popup": "popup/index.html"
|
|
},
|
|
"icons": {
|
|
"48": "static/icons/icon_48.png",
|
|
"128": "static/icons/icon_128.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"]
|
|
}
|
|
]
|
|
}
|