forked from darktrojan/newtabtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.xul
47 lines (47 loc) · 2.63 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
<?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="browser.newtabpage.rows" type="integer" title="&newtabtools.options.rows;" max="10" min="1" size="2"/>
<setting pref="browser.newtabpage.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.recent.show" type="bool" title="&newtabtools.options.recent.show;"/>
<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.thumbs.hidebuttons" type="bool" title="&newtabtools.options.thumbs.hidebuttons;"/>
<setting pref="extensions.newtabtools.thumbs.hidefavicons" type="bool" title="&newtabtools.options.thumbs.hidefavicons;"/>
<setting type="control">
<button id="newtabtools.export" label="&newtabtools.export;" />
<button id="newtabtools.import" label="&newtabtools.import;" />
</setting>
</vbox>