2019-11-25 20:39:35 +08:00
|
|
|
{
|
|
|
|
"name": "bookmark-chrome",
|
|
|
|
"description": "A Vue.js web extension",
|
|
|
|
"version": null,
|
|
|
|
"manifest_version": 2,
|
2020-05-31 14:51:37 +08:00
|
|
|
"permissions": [
|
|
|
|
"contextMenus"
|
|
|
|
],
|
2019-11-25 20:39:35 +08:00
|
|
|
"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
|
2019-11-26 00:02:30 +08:00
|
|
|
},
|
|
|
|
"content_scripts": [{
|
2020-05-31 19:16:16 +08:00
|
|
|
"matches": ["*://*/*"],
|
2019-12-01 22:50:10 +08:00
|
|
|
"js": ["static/sso.js"]
|
2019-11-26 00:02:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
]
|
2019-11-25 20:39:35 +08:00
|
|
|
}
|