29 lines
696 B
JSON
Raw Normal View History

2022-04-08 17:04:13 +08:00
{
"name": "bookmark-chrome",
"description": "A Vue.js web extension",
"version": "1.0",
"manifest_version": 2,
"permissions": ["contextMenus"],
"icons": {
"48": "static/icons/icon_48.png",
"128": "static/icons/icon_128.png"
},
"browser_action": {
"default_title": "bookmark-chrome",
"default_popup": "popup/index.html"
},
"background": {
2022-04-10 21:43:25 +08:00
"scripts": ["static/js/jquery.js", "static/js/axios.min.js", "background.js"]
2022-04-08 17:04:13 +08:00
},
"options_ui": {
"page": "options/index.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": ["*://*/*"],
2022-04-10 21:43:25 +08:00
"js": ["static/js/jquery.js", "static/js/axios.min.js", "static/js/sso.js"]
2022-04-08 17:04:13 +08:00
}
]
}