This file is indexed.

/usr/share/xul-ext/custom-tab-width/chrome/content/options.xul is in xul-ext-custom-tab-width 1.0.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>

<prefwindow xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
            title="Custom Tab Width">

<prefpane>
  <preferences>
    <preference id="minwidth"
                name="browser.tabs.tabMinWidth"
                type="int"/>
    <preference id="maxwidth"
                name="browser.tabs.tabMaxWidth"
                type="int"/>
  </preferences>
  <vbox>
    <label control="minwidth-input">min:</label>
    <textbox preference="minwidth" id="minwidth-input" type="number" min="1" max="1000"/>
  </vbox>
  <spacer/>
  <vbox>
    <label control="maxwidth-input">max:</label>
    <textbox preference="maxwidth" id="maxwidth-input" type="number" min="10" max="1000"/>
  </vbox>
</prefpane>

</prefwindow>