-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 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
{
"name": "CalXPort",
"version": "0.1",
"description": "Export class schedule from CalCentral's Enrollment Center to Google Calendar",
"permissions": ["activeTab", "declarativeContent", "tabs", "storage", "scripting", "identity"],
"host_permissions": ["https://www.googleapis.com/calendar/v3/calendars/*"],
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"oauth2": {
"client_id": "806985070719-gtim95u4jsvl1k0ehnvukhg9r1o6i8q6.apps.googleusercontent.com",
"scopes": ["https://www.googleapis.com/auth/calendar"]
},
"sandbox": {
"pages": ["sandbox.html"]
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/calxport_logo16.png",
"32": "/images/calxport_logo32.png",
"48": "/images/calxport_logo48.png",
"128": "/images/calxport_logo128.png"
}
},
"icons": {
"16": "images/calxport_logo16.png",
"32": "images/calxport_logo32.png",
"48": "images/calxport_logo48.png",
"128": "images/calxport_logo128.png"
},
"manifest_version": 3
}