-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmanifest.json
More file actions
46 lines (44 loc) · 827 Bytes
/
manifest.json
File metadata and controls
46 lines (44 loc) · 827 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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "2.4",
"permissions": [
"storage",
"activeTab"
],
"icons":{
"16": "images/icon.png",
"48":"images/icon.png",
"128":"images/icon.png"
},
"action": {
"default_icon": {
"19": "images/icon.png",
"38": "images/icon.png"
},
"default_title": "设置设置",
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "eye_protector",
"strict_min_version": "68.0"
}
},
"options_ui": {
"page": "options.html"
},
"content_scripts":[{
"matches":[
"http://*/*",
"https://*/*"
],
"js":[
"js/utility.js",
"js/main.js"
],
"run_at": "document_idle"
}],
"default_locale": "en"
}