24 lines
459 B
JSON
Raw Normal View History

2019-11-25 20:39:35 +08:00
{
"name": "bookmark-chrome",
"description": "A Vue.js web extension",
"version": null,
"manifest_version": 2,
"icons": {
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"browser_action": {
"default_title": "bookmark-chrome",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options/options.html",
"chrome_style": true
}
}