This file is indexed.

/usr/share/seed-gtk3/extensions/Gst.js is in libseed-gtk3-0 3.8.1-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
Gst = imports.gi.Gst;

Gst.Element.prototype.link_many = function(){
    this.link(arguments[0]);
    for (var i = 0; i < arguments.length-1; i++){
	arguments[i].link(arguments[i+1]);
    }
}