-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1.07 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
{
"manifest_version": 3,
"name": "Google Meet Forum Extension",
"version": "1.3",
"description": "Adds a forum feature to Google Meet",
"permissions": [
"storage",
"identity"
],
"host_permissions": [
"https://meet.google.com/*",
"https://chat.googleapis.com/*"
],
"content_scripts": [
{
"matches": ["https://meet.google.com/*"],
"js": ["content.js"],
"css": ["content.css"],
"run_at":"document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"oauth2": {
"client_id": "698888730496-2k69ua4u8rclvqrt6o368jhtk4r2sqvg.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/chat.bot",
"https://www.googleapis.com/auth/chat.messages",
"https://www.googleapis.com/auth/chat.spaces"
]
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
}