-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
53 lines (53 loc) · 1.39 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
52
53
{
"manifest_version": 3,
"name": "Google Meet AutoRec",
"description": "Google Chrome extension to add automatic video recording function to Google Meet",
"version": "1.3.0",
"permissions": [
"tabs",
"storage",
"webRequest"
],
"host_permissions": [
"https://meet.google.com/*"
],
"content_scripts": [
{
"matches": [
"https://meet.google.com/*"
],
"js": [
"lib/jquery-3.5.1.min.js",
"src/content/content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src/background/background.js"
},
"action": {
"default_popup": "src/action/popup.html",
"default_title": "Google Meet AutoRec"
},
"icons": {
"16": "icon/Google_Meet_AutoRec16.png",
"32": "icon/Google_Meet_AutoRec32.png",
"48": "icon/Google_Meet_AutoRec48.png",
"128": "icon/Google_Meet_AutoRec128.png"
},
"commands": {
"start_recording": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Start recording"
},
"stop_recording": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Stop recording"
}
}
}