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
|
2019-11-26 00:02:30 +08:00
|
|
|
},
|
|
|
|
"content_scripts": [{
|
|
|
|
"matches": ["http://west.tapme.top/*", "http://bookmark.tapme.top/*","http://localhost:3000/*"],
|
|
|
|
"js": ["popup/static/sso.js"]
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
2019-11-25 20:39:35 +08:00
|
|
|
}
|