-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 964 Bytes
/
manifest.json
File metadata and controls
44 lines (44 loc) · 964 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
{
"manifest_version": 3,
"name": "Meta Glasses Video Monitor",
"description": "Monitor your video calls with Meta Glasses",
"version": "0.0.1",
"author": "Devon Crebbin",
"icons": {},
"background": {
"service_worker": "src/background.ts"
},
"action": {
"default_popup": "src/pages/popup/popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https://messenger.com/*",
"https://facebook.com/*",
"https://www.facebook.com/*",
"https://www.messenger.com/*",
"http://localhost:3103/*",
"https://api.openai.com/*"
],
"js": [
"src/pages/content/index.ts"
]
}
],
"web_accessible_resources": [
{
"resources": [],
"matches": [
"*://*.messenger.com/*",
"*://*.facebook.com/*",
"*://*.www.facebook.com/*",
"*://*.www.messenger.com/*"
]
}
]
}