forked from darktrojan/newtabtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.xul
64 lines (64 loc) · 3.61 KB
/
options.xul
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
59
60
61
62
63
64
<?xml version="1.0" ?>
<!--
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this file,
You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<!DOCTYPE vbox SYSTEM "chrome://newtabtools/locale/options.dtd">
<vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<setting pref="extensions.newtabtools.theme" type="radio" title="&newtabtools.options.theme;">
<radiogroup orient="horizontal">
<radio label="&newtabtools.options.theme.light;" value="light" />
<radio label="&newtabtools.options.theme.dark;" value="dark" />
</radiogroup>
</setting>
<setting pref="extensions.newtabtools.rows" type="integer" title="&newtabtools.options.rows;" max="10" min="1" size="2"/>
<setting pref="extensions.newtabtools.columns" type="integer" title="&newtabtools.options.columns;" max="10" min="1" size="2"/>
<setting pref="extensions.newtabtools.grid.margin" type="menulist" title="&newtabtools.options.grid.margin;">
<menulist sizetopopup="always">
<menupopup>
<menuitem label="&newtabtools.options.size.small;" value="small small small small" />
<menuitem label="&newtabtools.options.size.medium;" value="medium medium medium medium" />
<menuitem label="&newtabtools.options.size.large;" value="large large large large" />
</menupopup>
</menulist>
</setting>
<setting pref="extensions.newtabtools.grid.spacing" type="menulist" title="&newtabtools.options.grid.spacing;">
<menulist sizetopopup="always">
<menupopup>
<menuitem label="&newtabtools.options.size.small;" value="small" />
<menuitem label="&newtabtools.options.size.medium;" value="medium" />
<menuitem label="&newtabtools.options.size.large;" value="large" />
</menupopup>
</menulist>
</setting>
<setting pref="extensions.newtabtools.thumbs.titlesize" type="menulist" title="&newtabtools.options.thumb-titlesize;">
<menulist sizetopopup="always">
<menupopup>
<menuitem label="&newtabtools.options.launcher.hidden;" value="hidden" />
<menuitem label="&newtabtools.options.size.small;" value="small" />
<menuitem label="&newtabtools.options.size.medium;" value="medium" />
<menuitem label="&newtabtools.options.size.large;" value="large" />
</menupopup>
</menulist>
</setting>
<setting pref="extensions.newtabtools.launcher" type="menulist" title="&newtabtools.options.launcher;">
<menulist sizetopopup="always">
<menupopup>
<menuitem label="&newtabtools.options.launcher.hidden;" value="0" />
<menuitem label="&newtabtools.options.launcher.top;" value="1" />
<menuitem label="&newtabtools.options.launcher.bottom;" value="3" />
<menuitem label="&newtabtools.options.launcher.left;" value="4" />
<menuitem label="&newtabtools.options.launcher.right;" value="2" />
</menupopup>
</menulist>
</setting>
<setting pref="extensions.newtabtools.recent.show" type="bool" checkboxlabel="&newtabtools.options.recent;" />
<setting pref="extensions.newtabtools.thumbs.hidebuttons" type="bool" inverted="true" checkboxlabel="&newtabtools.options.thumb-buttons;" />
<setting pref="extensions.newtabtools.thumbs.hidefavicons" type="bool" inverted="true" checkboxlabel="&newtabtools.options.favicons;" />
<setting pref="extensions.newtabtools.thumbs.contain" type="bool" checkboxlabel="&newtabtools.options.thumb-contain;" />
<setting type="control">
<button id="newtabtools.export" label="&newtabtools.export;" />
<button id="newtabtools.import" label="&newtabtools.import;" />
</setting>
</vbox>