-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdefaultSettings.js
More file actions
39 lines (39 loc) · 1.35 KB
/
defaultSettings.js
File metadata and controls
39 lines (39 loc) · 1.35 KB
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
const defaultSettings = {
"clock": true,
"weather": true,
"customCity": "",
"useCustomCity": false,
"tempUnit": "celsius",
"bookmarks": true,
"bookmarkFolder": "Bookmarks Bar",
"expandBookmarks": false,
"topRight": true,
"topRightOrder": [
{ "id": "bookmarks", "displayBool": true, "url": "chrome://bookmarks" },
{ "id": "downloads", "displayBool": true, "url": "chrome://downloads" },
{ "id": "history", "displayBool": true, "url": "chrome://history" },
{ "id": "extensions", "displayBool": true, "url": "chrome://extensions" },
{ "id": "passwords", "displayBool": true, "url": "chrome://password-manager/passwords" },
{ "id": "settings", "displayBool": true, "url": "chrome://settings" }
],
"pixelArt": true,
"selectedPixelArt": "flowers",
"customSVG": "",
"pixelArtOpacity": 40,
"pixelArtDensity": 20,
"pixelArtColorDark": "#cccccc",
"pixelArtColorLight": "#b04288",
"availableWidgets": ["calendar", "todo"],
"useUnsplash": false,
"unsplashApiKey": "",
"unsplashUpdateFrequency": "daily",
"showUnsplashRefresh": false,
"backgroundImage": "",
"sidebar": false,
"sidebarPosition": "right",
"sidebarWidgets": [],
"sidebarExpanded": false,
"sidebarShowCustomize": true,
"autoHide": false,
"customCSS": ""
}