-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
executable file
·49 lines (41 loc) · 1.76 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
{
"name": "Schedule N Record",
"version": "0.0.1",
"description": "Automatically record your lectures/Video Meetings in background by scheduling them earlier.",
"background": {
"page": "ui/background.html"
},
"content_scripts": [
{
"matches": ["http://*/*"],
"js": ["scripts/content.js"]
}
],
"key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAih0ZHbZrhJq8zEfCjbkPTcdxguSvOiEIv28E5C7WDg0UhZY/le1CFWQVJR//UU2gvdyoq+aAuPzUSwjY5tS+Fggb1becVjPKaEQUISHxQRlEbc0I0A/7sR/d3D/iIrTcXUhs4KRq6OsI105dX1bMX4f+SzuVtCzoEEJ+37hCqP8OguHIDpfbUJkFo4D7UeFLva23ZGHCmaXTGHem7QHvz/WFoum9A4MAIh/cLSxFS/0n2zgGP2rUJ9ao79ywnfo8jw2iS1TOt7ymEXMQisa0DeyMm4vZQj+rW4W68s/NchNqJit0O3nS4t5JQ3zOT+/1S+GtY48GGNcpAjMU0giXhQIDAQAB",
"permissions": [ "tabs", "tabCapture" ,"<all_urls>", "storage", "identity", "identity.email", "alarms"],
"oauth2": {
"client_id": "786432158198-uc61v8el9vc2nain03jukb5m2kckmoch.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/calendar.readonly",
"https://www.googleapis.com/auth/userinfo.email"
]
},
"content_security_policy": "script-src 'self' https://apis.google.com/ https://ajax.googleapis.com 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_popup": "ui/popup.html",
"default_icon": {
"16": "resources/icons/i_16.png",
"32": "resources/icons/i_32.png",
"48": "resources/icons/i_48.png",
"128": "resources/icons/i_128.png"
}
},
"web_accessible_resources": [ ],
"icons": {
"16": "resources/icons/i_16.png",
"32": "resources/icons/i_32.png",
"48": "resources/icons/i_48.png",
"128": "resources/icons/i_128.png"
},
"manifest_version": 2
}