-
Notifications
You must be signed in to change notification settings - Fork 84
/
manifest.json
executable file
·53 lines (53 loc) · 1022 Bytes
/
manifest.json
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
48
49
50
51
52
53
{
"manifest_version": 3,
"name": "name in manifest.json",
"description": "description in manifest.json",
"options_ui": {
"page": "src/pages/options/index.html"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": {
"32": "icon-32.png"
}
},
"chrome_url_overrides": {
"newtab": "src/pages/newtab/index.html"
},
"icons": {
"128": "icon-128.png"
},
"permissions": [
"activeTab",
"sidePanel"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"src/pages/content/index.tsx"
],
"css": [
"contentStyle.css"
]
}
],
"side_panel": {
"default_path": "src/pages/panel/index.html"
},
"devtools_page": "src/pages/devtools/index.html",
"web_accessible_resources": [
{
"resources": [
"contentStyle.css",
"icon-128.png",
"icon-32.png"
],
"matches": []
}
]
}