Revision control
Copy as Markdown
Other Tools
<?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
<!DOCTYPE html>
<html
  scrolling="false"
  style="min-width: 30em"
>
  <head>
    <title data-l10n-id="app-manager-dialog-title"></title>
    <meta
      http-equiv="Content-Security-Policy"
      content="default-src chrome:; script-src chrome: 'unsafe-inline' moz-src:; style-src chrome: 'unsafe-inline'"
    />
    <link
      rel="stylesheet"
    />
    <link
      rel="localization"
      href="messenger/preferences/application-manager.ftl"
    />
    <script
      defer="defer"
    ></script>
    <script
      defer="defer"
    ></script>
    <script
      defer="defer"
    ></script>
  </head>
  <html:body
  >
    <dialog id="appManager" buttons="accept,cancel">
      <commandset id="appManagerCommandSet">
        <command
          id="cmd_delete"
          oncommand="gAppManagerDialog.remove();"
          disabled="true"
        />
      </commandset>
      <keyset id="appManagerKeyset">
        <key id="delete" keycode="VK_DELETE" command="cmd_delete" />
      </keyset>
      <stringbundle
        id="appManagerBundle"
      />
      <stringbundle
        id="bundlePreferences"
      />
      <description id="appDescription" />
      <separator class="thin" />
      <hbox flex="1">
        <richlistbox
          id="appList"
          onselect="gAppManagerDialog.onSelect();"
          flex="1"
          style="min-height: 150px"
        />
        <vbox>
          <button
            id="remove"
            data-l10n-id="remove-app-button"
            command="cmd_delete"
          />
          <spacer flex="1" />
        </vbox>
      </hbox>
      <vbox id="appDetails">
        <separator class="thin" />
        <label id="appType" />
        <html:input id="appLocation" type="text" readonly="readonly" />
      </vbox>
    </dialog>
  </html:body>
</html>