-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
51 lines (51 loc) · 1.59 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
45
46
47
48
49
50
51
{
"manifest_version": 3,
"name": "ARChat",
"description": "ARChat is a rapid prototyping platform for augmented communication. Cite Visual Captions (CHI 2023) if you used it in research.",
"version": "3.1",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAg/wAu86aayfkDEvVAGgdtl8FS2/axn1JqdDl9awFDUdSLZrCNJ/7vMJBEUp3IpgzBMF+qFH9UZFQJIuyo2vRHnmIXDMVXEfYLmIJ9WfMYQnu8sUvcTilj7zCzaWSyo1/VqGeahsRX18VZBaMyOc4vauSojZFi66ZkR+dd9JoPhbxFFAMrcZkYeoIL27+ofKRy01gCBN/p3kQtowfvQtxGA+5irSqspXPtFIeTY20ZBhGaYR1KXu9wwa9ghtuQPf00Gy8+FyDzFwemawJ3KjlATokTjqEw9Z8ZM1kB6sS0q50xSJUhlbQ+/FMFN0owm7K5UHTSXGOALS8YPnHASeP3wIDAQAB",
"permissions": ["storage", "sidePanel", "activeTab"],
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*",
"https://preprod.meet.google.com/*",
"https://preprod.meet.sandbox.google.com/*",
"https://*.zoom.us/*",
"https://teams.microsoft.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"client.js",
"interactive_image.js"
]
}
]
}