This file is indexed.

/usr/share/xul-ext/greasemonkey/content/scratchpad-overlay.js is in xul-ext-greasemonkey 1.15-1~deb7u1.

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
window.addEventListener('load', function() {
  var args = window.arguments;
  if (!args) return;
  if (!(args[0] instanceof Ci.nsIDialogParamBlock)) return;
  args = args[0].GetString(1);
  if (!args) return;
  args = JSON.parse(args);
  if (!args.filename) return;
  if (!args.filename.match(/\.user\.js$/)) return;

  Components.utils.import('resource://greasemonkey/util.js');

  // If we're opening a user script:
  // Put the cursor at the top.  Workaround for #1708 ; remove when
  // http://bugzil.la/843597 is fixed.
  var initializeCheckCount = 0;
  var initializeCheckTimer = null;
  function moveCursorToTop() {
    if (initializeCheckCount > 50) {
      GM_util.logError('Gave up waiting for Scratchpad.initialized!');
      clearInterval(initializeCheckTimer);
    }
    initializeCheckCount++;

    if (!Scratchpad.initialized) return;

    Scratchpad.selectRange(0, 0);
    clearInterval(initializeCheckTimer);
  }
  initializeCheckTimer = setInterval(moveCursorToTop, 20);

  // Hide all the elements which don't make sense when editing a script.
  // See #1771 and #1774.
  function setNodeAttr(aId, aAttr, aVal) {
    var el = document.getElementById(aId);
    if (el) el.setAttribute(aAttr, aVal);
  }

  setNodeAttr('sp-execute-menu', 'collapsed', true);
  setNodeAttr('sp-environment-menu', 'collapsed', true);
  setNodeAttr('sp-toolbar-run', 'collapsed', true);
  setNodeAttr('sp-toolbar-inspect', 'collapsed', true);
  setNodeAttr('sp-toolbar-display', 'collapsed', true);

  // Plus the keyboard shortcuts for them.
  setNodeAttr('sp-key-run', 'disabled', true);
  setNodeAttr('sp-key-inspect', 'disabled', true);
  setNodeAttr('sp-key-display', 'disabled', true);

  // But the context menu items can't be accessed by ID (?!) so iterate.
  var textPopup = document.getElementById('scratchpad-text-popup');
  if (textPopup) {
    for (var i = 0, node = null; node = textPopup.childNodes[i]; i++) {
      if ('sp-text-run' == node.id) {
        node.collapsed = true;
        node.previousSibling.collapsed = true;
      }
      if ('sp-text-inspect' == node.id) node.collapsed = true;
      if ('sp-text-display' == node.id) node.collapsed = true;
    }
  }
}, true);