Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <?xml version="1.0"?>
3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
4 - License, v. 2.0. If a copy of the MPL was not distributed with this
5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
7 <?xml-stylesheet href="chrome://global/skin/"?>
9 <dialog id="addonList" windowtype="Addons:List"
10 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
11 onunload="shutdown();"
12 buttons="accept,cancel" onload="init();">
14 <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
15 <script type="application/javascript"
16 src="chrome://mozapps/content/extensions/list.js"/>
18 <stringbundle id="extensionsBundle"
19 src="chrome://mozapps/locale/extensions/extensions.properties"/>
20 <stringbundle id="brandBundle"
21 src="chrome://branding/locale/brand.properties"/>
23 <hbox align="start">
24 <vbox>
25 <image id="infoIcon"/>
26 </vbox>
27 <vbox class="spaced" style="min-width: 20em; max-width: 40em">
28 <label id="message1" class="spaced" hidden="true"/>
29 <separator class="thin"/>
30 <tree id="addonsTree" rows="6" hidecolumnpicker="true" hidden="true" class="spaced">
31 <treecols style="max-width: 25em;">
32 <treecol flex="1" id="nameColumn" hideheader="true"/>
33 </treecols>
34 <treechildren id="addonsChildren"/>
35 </tree>
36 <label id="message2" class="spaced" hidden="true"/>
37 <label class="bold spaced" id="message3" hidden="true"/>
38 <hbox id="moreInfoBox" hidden="true">
39 <label id="moreInfo" class="text-link spaced"/>
40 <spacer flex="1"/>
41 </hbox>
42 </vbox>
43 </hbox>
44 </dialog>