-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
44 lines (44 loc) · 1.06 KB
/
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
{
"manifest_version": 3,
"name": "PageChat",
"version": "1.0.0",
"icons": {
"16": "src/assets/[email protected]",
"32": "src/assets/[email protected]",
"48": "src/assets/[email protected]",
"128": "src/assets/[email protected]"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "src/assets/[email protected]",
"32": "src/assets/[email protected]",
"48": "src/assets/[email protected]",
"128": "src/assets/[email protected]"
}
},
"content_scripts": [
{
"js": [
"src/content-script.tsx"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"background": {
"service_worker": "src/service-worker.ts",
"type": "module"
},
"permissions": [
"scripting",
"activeTab",
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}