This file is indexed.

/usr/share/xul-ext/password-editor/content/prefwindow.xul is in xul-ext-password-editor 2.9.6-1.

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
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Saved Password Editor, extension for Gecko applications
    Copyright (C) 2015  Daniel Dawson <danielcdawson@gmail.com>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-->

<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://savedpasswordeditor/skin/prefwindow.css"
  type="text/css"?>

<!DOCTYPE prefwindow SYSTEM
          "chrome://savedpasswordeditor/locale/prefwindow.dtd">

<prefwindow
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    id="savedpasswordeditor-prefwindow" title="&prefwindow.title;">
  <prefpane>
    <preferences>
      <preference id="pref-display-menuitem"
                  name="extensions.savedpasswordeditor.display_menuitem"
                  type="bool"/>
      <preference id="pref-rename-menuitem-to"
                  name="extensions.savedpasswordeditor.rename_menuitem_to"
                  type="string"/>
      <preference id="pref-savedpasswords-shortcut-modifiers"
                  name="extensions.savedpasswordeditor.openspkeymodifiers"
                  type="string"/>
      <preference id="pref-savedpasswords-shortcut-key"
                  name="extensions.savedpasswordeditor.openspkey"
                  type="string"/>
      <preference id="pref-confirm-ctxmenu-delete"
                  name="extensions.savedpasswordeditor.confirm_ctxmenu_delete"
                  type="bool"/>
      <preference id="pref-preselect-current-site"
                  name="extensions.savedpasswordeditor.preselect_current_site"
                  type="bool"/>
      <preference id="pref-alwaysshowpasswords"
                  name="extensions.savedpasswordeditor.always_show_passwords"
                  type="bool"/>
      <preference id="pref-forcepromptformasterpassword"
          name="extensions.savedpasswordeditor.force_prompt_for_masterPassword"
                  type="bool"/>
      <preference id="pref-showpassword"
                  name="extensions.savedpasswordeditor.showpassword"
                  type="int"/>
    </preferences>
    <groupbox>
      <caption label="&opensp_group.caption;"/>
      <checkbox id="displayMenuitem_ck" label="&displayMenuitem.label;"
                tooltiptext="&displayMenuitem.tooltip;"
                preference="pref-display-menuitem"
                oncommand="toggle_displayMenuitem();"/>
      <hbox id="renameMenuitem_row" align="center" class="indent">
        <label id="renameMenuitem_lbl" value="&renameMenuitemTo.label;"
               tooltiptext="&renameMenuitemTo.tooltip;"/>
        <textbox id="renameMenuitem_text"
                 tooltiptext="&renameMenuitemTo.tooltip;"
                 preference="pref-rename-menuitem-to"/>
      </hbox>
      <hbox id="opensp_shortcut_box" align="center">
        <label control="opensp_shortcut_modifiers"
               value="&opensp_shortcut.label;"
               tooltiptext="&opensp_shortcut.tooltip;"/>
        <textbox id="opensp_shortcut_modifiers" flex="1"
                 tooltiptext="&opensp_shortcut_modifiers.tooltip;"
                 preference="pref-savedpasswords-shortcut-modifiers"/>
        <textbox id="opensp_shortcut_key" size="10"
                 tooltiptext="&opensp_shortcut_key.tooltip;"
                 preference="pref-savedpasswords-shortcut-key"
                 onsynctopreference="return synctopref();"/>
        <button id="opensp_shortcut_capturebtn"
                label="&captureshortcut.label;"
                tooltiptext="&captureshortcut.tooltip;"
                oncommand="captureshortcut(event);"/>
        <button id="opensp_keypressrecv" tabindex="-1"/>
      </hbox>
      <label id="entershortcut_lbl" value="&entershortcut.label;"/>
    </groupbox>
    <groupbox>
      <caption label="&webpages.caption;"/>
      <checkbox id="promptforctxmenudelete_ck"
                label="&promptforctxmenudelete.label;"
                preference="pref-confirm-ctxmenu-delete"/>
    </groupbox>
    <groupbox>
      <caption label="&modstosavedpasswords.caption;"/>
      <checkbox id="preselectcurrentsite_ck"
                label="&preselectCurrentSite.label;"
                tooltiptext="&preselectCurrentSite.tooltip;"
                preference="pref-preselect-current-site"/>
      <checkbox id="alwaysshowpasswords_ck" label="&alwaysShowPasswords.label;"
                tooltiptext="&alwaysShowPasswords.tooltip;"
                preference="pref-alwaysshowpasswords"
                oncommand="toggle_alwaysShowPasswords();"/>
      <checkbox id="forcepromptformasterpassword_ck" class="indent"
                label="&alwaysPromptForMasterPassword.label;"
                tooltiptext="&alwaysPromptForMasterPassword.tooltip;"
                preference="pref-forcepromptformasterpassword"/>
    </groupbox>
    <groupbox>
      <caption label="&passwordfield_caption.label;"/>
      <radiogroup id="showPassword_rg" preference="pref-showpassword">
        <radio label="&passwordfield_alwayshide.label;" value="0"/>
        <radio label="&passwordfield_alwaysshow.label;" value="1"/>
        <radio label="&passwordfield_rememberlast.label;" value="2"
               tooltiptext="&passwordfield_rememberlast.tooltip;"/>
        <radio label="&passwordfield_followspwin.label;" value="3"
               tooltiptext="&passwordfield_followspwin.tooltip;"/>
      </radiogroup>
    </groupbox>
  </prefpane>
  <script type="text/javascript" src="prefwindow.js"/>
</prefwindow>