-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
48 lines (48 loc) · 1.45 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
{
"manifest_version": 2,
"name": "ARChat",
"description": "ARChat is a rapid prototyping platform for augmented communication. Cite Visual Captions (CHI 2023) if you used it in research.",
"key": "<put-your-key-here>",
"version": "2.0",
"permissions": [
"activeTab",
"storage",
"https://tse1.mm.bing.net/",
"https://tse2.mm.bing.net/",
"https://tse3.mm.bing.net/",
"https://tse4.mm.bing.net/"
],
"background": {
"page": "background.html",
"persistent": true
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon128.png",
"default_title": "ARChat"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*",
"https://*.meet.google.com/*",
"https://*.meet.sandbox.google.com/*",
"https://*.zoom.us/*",
"https://teams.microsoft.com/*"
],
"js": ["content.js", "interactive_image.js"],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' https://cdn.jsdelivr.net https://unpkg.com https://ajax.googleapis.com https://firebasestorage.googleapis.com https://tfhub.dev https://www.youtube.com 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": ["client.js", "interactive_image.js"]
}