This file is indexed.

/usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/extension.js is in gnome-shell-extensions 3.18.3-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
const AppDisplay = imports.ui.appDisplay;

let _activateOriginal = null;

function init() {
}

function enable() {
  _activateOriginal = AppDisplay.AppIcon.prototype.activate;
  AppDisplay.AppIcon.prototype.activate = function() {
      _activateOriginal.call(this, 2);
  };
}

function disable() {
  AppDisplay.AppIcon.prototype.activate = _activateOriginal;
}