-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 870 Bytes
/
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
{
"manifest_version": 2,
"name": "Meeteor ⚡️",
"description": "Chrome extension for Google Meet. Create and Join meeting using keyboard shortcut!",
"version": "1.0.0",
"icons": {
"128": "final.png"
},
"browser_action": {
"default_icon": {
"32": "final.png"
},
"default_popup": "index.html",
"default_title": "Open Popup"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://meet.google.com/*"],
"js": ["meet_controller.js"],
"run_at": "document_end"
}
],
"permissions": ["storage", "clipboardWrite", "clipboardRead"],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "MacCtrl+Shift+M"
},
"description": "Toggle Popup"
}
}
}