-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 1.43 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
{
"version": "2.1.2",
"manifest_version": 3,
"name": "MeetMate - Google Meet tookit",
"description": "Live Meet Countdown, Speaker Checker, Chat Saver & Exporter",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqqLh45CfKQhI5PrJGkaTqbXVbq3LqrULuVImcMdogiXhubWg5Uye7bLlLRW0+/nnVYAuK1l0ej/JGstDJsMd9cGvWPsqSJRPZvCdrMc9qcBKuPjbqmoClkvsLtbuoFl2mt7ReyIn6ymTHQkhtsPhTFLArLqE3Gc6QoIk/7+nSSMJfJQBIdlPhRxmg8ncYbHjSnT06QFz4Vliw8eoWwkWEpNH8OCAMO+tozi1HgdZcO7ZrYPJ83CN+lXaYALqF0ntnRlMrBLN6X8IKDSb+LExV8odrVC9W/1rHWJNq9r9c007RHpIWPEXerWDpkdDL0RtSNgG8oUo4njB1tCtgAWmDwIDAQAB",
"permissions": ["identity", "storage"],
"host_permissions": [
"https://meet.google.com/*"
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"oauth2": {
"client_id": "144302976950-0t7gfh08j9nncngqspaf07pambkk92ot.apps.googleusercontent.com",
"scopes": ["email", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"]
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://meet.google.com/*"],
"js": ["content.js"],
"run_at": "document_end",
"all_frames": true
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; img-src 'self' https: data:; style-src 'self' 'unsafe-inline'; font-src 'self'; connect-src 'self' https://www.googleapis.com"
}
}