-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.js
40 lines (40 loc) · 1.08 KB
/
config.js
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
const STREAM_CALENDAR_CONFIG = {
"documentTitle": "Stream Calendar",
"siteIconUrl": "image-url-here.png",
"alertHTML": "",
"footerHTML": "Made with ♥ by <a href=\"https://ko-fi.com/sant268\">Sant268</a>",
//footer fulfills the attribution, but can be removed.
"daysToShow": 7,
"useAlternateButtonStyle": false,
"enableGoogleTranslate": true,
"googleAnalyticsId": "",
"googleCalendarApiKey": "",
"loadingImages": [
{
"url": "image-url-here.png",
"width": "0px",
"height": "0px"
}
],
"calendarSets": [
{
"uid": "default",
"displayName": "Default Set",
"hideToggleButton": false,
"eventObjs": [
{
"googleCalendarId": "[email protected]",
"classNames": "firstcalendar",
"color": "sienna",
"extendedProps": {
"id": "firstcalendar",
"icon": "📅",
"img": "image-url-here.png",
"url": "https://www.youtube.com/channel/your-channel-id"
},
"textColor": "white"
}
]
}
]
};