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": [
|
|
|
|
{
|
2020-01-09 01:32:12 +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
|
|
|
},
|
2020-03-06 01:36:16 +00:00
|
|
|
{
|
|
|
|
"matches": ["http://oa.komect.com/oa/oa/*"],
|
|
|
|
"js": ["js/oa.js"],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
2019-09-10 09:32:17 +00:00
|
|
|
{
|
2020-01-09 01:32:12 +00:00
|
|
|
"matches": ["https://oa.komect.com:2100/oa/oa/*"],
|
|
|
|
"js": ["js/oa.js"],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"matches": ["https://oa.komect.com/oa/document/*"],
|
|
|
|
"js": ["js/read.js"],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
2020-03-06 01:36:16 +00:00
|
|
|
{
|
|
|
|
"matches": ["http://oa.komect.com/oa/document/*"],
|
|
|
|
"js": ["js/read.js"],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
2020-01-09 01:32:12 +00:00
|
|
|
{
|
|
|
|
"matches": ["https://oa.komect.com:2100/oa/document/*"],
|
2019-09-10 09:32:17 +00:00
|
|
|
"js": ["js/read.js"],
|
|
|
|
"run_at": "document_start"
|
2019-09-10 00:13:33 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"permissions": [
|
|
|
|
"declarativeContent",
|
|
|
|
"tabs"
|
|
|
|
]
|
|
|
|
}
|