AutoReadFile/manifest.json

33 lines
790 B
JSON
Raw Normal View History

2019-09-10 00:13:33 +00:00
{
"name": "HelloChrome",
"version": "1.0.0",
"manifest_version": 2,
"description": "Automatic Read Files",
"page_action": {
"default_title": "say",
"default_icon": "icon/icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"content_scripts": [
{
2019-09-10 09:32:17 +00:00
"matches": ["https://oa.komect.com/oa/oa*"],
2019-09-10 00:13:33 +00:00
"js": ["js/oa.js"],
"run_at": "document_start"
2019-09-10 09:32:17 +00:00
},
{
"matches": ["https://oa.komect.com/oa/document*"],
"js": ["js/read.js"],
"run_at": "document_start"
2019-09-10 00:13:33 +00:00
}
],
"permissions": [
"declarativeContent",
"tabs"
]
}