This file is indexed.

/usr/share/xul-ext/greasemonkey/content/scriptprefs.xul is in xul-ext-greasemonkey 3.8-1~deb8u1.

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
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
65
66
67
68
69
70
<?xml version="1.0"?>

<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://greasemonkey/skin/bindings.css" type="text/css"?>
<?xml-stylesheet href="chrome://greasemonkey/skin/scriptprefs.css" type="text/css"?>

<!DOCTYPE prefwindow [
<!ENTITY % addonsDTD SYSTEM "chrome://greasemonkey/locale/gm-addons.dtd">
<!ENTITY % cludesDTD SYSTEM "chrome://greasemonkey/locale/gm-cludes.dtd">
<!ENTITY % greasemonkeyDTD SYSTEM "chrome://greasemonkey/locale/greasemonkey.dtd">
%addonsDTD;
%cludesDTD;
%greasemonkeyDTD;
]>

<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  buttons="accept,cancel"
  id="greasemonkey-script-preferences"
  title="&scriptprefs.title;"
  ondialogaccept="return onDialogAccept();"
  persist="width height"
>

<script type="application/x-javascript" src="chrome://greasemonkey/content/scriptprefs.js" />

<tabbox flex="1">
  <tabs>
    <tab label="&scriptprefs.usersettings;" />
    <tab label="&scriptprefs.scriptsettings;" />
  </tabs>
  <tabpanels flex="1">
    <tabpanel flex="1">
      <vbox flex="1">
        <vbox flex="1" class="include">
          <label value="&label.grpIncluded;" />
          <cludes flex="1" id="user-includes"/>
        </vbox>
        <vbox flex="1" class="match">
          <label value="&label.grpMatched;" />
          <cludes flex="1" id="user-matches"/>
        </vbox>
        <vbox flex="1" class="exclude">
          <label value="&label.grpExcluded;" />
          <cludes flex="1" id="user-excludes" />
        </vbox>
      </vbox>
    </tabpanel>
    <tabpanel flex="1">
      <vbox flex="1">
        <vbox flex="1" class="include">
          <label value="&label.grpIncluded;" />
          <cludes flex="1" id="script-includes" class="readonly"/>
        </vbox>
        <vbox flex="1" class="match">
          <label value="&label.grpMatched;" />
          <cludes flex="1" id="script-matches" class="readonly"/>
        </vbox>
        <vbox flex="1" class="exclude">
          <label value="&label.grpExcluded;" />
          <cludes flex="1" id="script-excludes" class="readonly"/>
        </vbox>
      </vbox>
    </tabpanel>
  </tabpanels>
</tabbox>

<spacer height="5" />
<button label="&Edit.tooltip;" oncommand="GM_util.openInEditor(gScript);" />

</dialog>