-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (45 loc) · 1016 Bytes
/
manifest.json
File metadata and controls
47 lines (45 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0",
"author": "Kun Chen",
"version_name": "1.0.1",
"default_locale": "zh_CN",
"background": {
"service_worker": "background.js"
},
"host_permissions": ["https://www.zhipin.com/*"],
"permissions": [
"activeTab",
"scripting",
"storage",
"webRequest",
"declarativeNetRequestWithHostAccess"
],
"icons": {
"16": "images/Icon16.png",
"32": "images/Icon32.png",
"48": "images/Icon48.png",
"128": "images/Icon128.png"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": "images/Icon128.png"
},
"content_scripts": [
{
"js": ["scripts/content.js"],
"matches": ["https://www.zhipin.com/*", "https://www.51job.com/*"]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
}
}