This file is indexed.

/usr/share/xul-ext/all-in-one-sidebar/content/about.js is in xul-ext-all-in-one-sidebar 0.7.23-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
var AiOS_About = {};

(function() {

    // Aufruf durch 'onpaneload' in about_content.xul
    this.initialize = function() {

        Components.utils.import("resource://gre/modules/AddonManager.jsm");

        AddonManager.getAddonByID("{097d3191-e6fa-4728-9826-b533d755359d}",
            function(addon) {

                document.getElementById("aboutHeader").setAttribute("title", addon.name);
                document.getElementById("aboutHeader").setAttribute("description", addon.version);

                document.getElementById("macTitle").setAttribute("value", addon.name);
                document.getElementById("macVersion").setAttribute("value", addon.version);

            }
        );

        AiOS_HELPER.rememberAppInfo( document.getElementById("aiosAbout") );

    };

}).apply(AiOS_About);