-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreferences.json
More file actions
58 lines (58 loc) · 1.68 KB
/
preferences.json
File metadata and controls
58 lines (58 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[
{
"property": "extension.search-engine-select.enabled",
"label": "Enable Search Engine Select",
"type": "checkbox",
"placeholder": false,
"defaultValue": true,
"description": "Globally enables or disables the floating search engine switcher UI."
},
{
"property": "extension.search-engine-select.remember-position",
"label": "Remember UI Position",
"type": "checkbox",
"placeholder": false,
"defaultValue": true,
"description": "Saves the vertical position of the switcher after you drag it.",
"conditions": [
{
"if": {
"property": "extension.search-engine-select.enabled",
"value": true
}
}
]
},
{
"property": "extension.search-engine-select.size",
"label": "UI Size",
"type": "dropdown",
"defaultValue": "normal",
"options": [
{ "label": "Small", "value": "small" },
{ "label": "Normal", "value": "normal" },
{ "label": "Large", "value": "large" }
],
"description": "Adjust the overall size of the search engine switcher."
},
{
"property": "extension.search-engine-select.theme",
"label": "UI Theme",
"type": "dropdown",
"defaultValue": "dark",
"options": [
{ "label": "Dark", "value": "dark" },
{ "label": "Light", "value": "light" },
{ "label": "AMOLED", "value": "amoled" }
],
"description": "Choose a visual style for the switcher."
},
{
"property": "extension.search-engine-select.debug-mode",
"label": "Enable Debug Mode",
"type": "checkbox",
"placeholder": false,
"defaultValue": false,
"description": "Outputs detailed script information to the Browser Console."
}
]