This file is indexed.

/usr/share/xul-ext/lightbeam/package.json is in xul-ext-lightbeam 1.3.1+dfsg-1ubuntu1.

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
{
    "name": "lightbeam",
    "title": "Lightbeam",
    "description": "Lightbeam is a Firefox add-on that allows you to see the third parties that are collecting information about your browsing activity, with and without your consent. Using interactive visualizations, Lightbeam shows you the relationships between these third parties and the sites you visit.",
    "author": "Mozilla Foundation",
    "license": "MPL 2.0",
    "version": "1.3.1",
    "id": "jid1-F9UJ2thwoAm5gQ@jetpack",
    "main": "lib/main.js",
    "permissions": {
        "multiprocess": true,
        "private-browsing": true
    },
    "preferences": [
      { "name": "defaultVisualization",
        "title": "Default visualization",
        "description": "Graph or list",
        "type": "menulist",
        "value": "graph",
        "options": [
          { "value": "graph", "label": "Graph" },
          { "value": "list", "label": "List" }
        ]
      },
      { "name": "defaultFilter",
        "title": "Default filter",
        "description": "Time period",
        "type": "menulist",
        "value": "daily",
        "options": [
          { "value": "daily", "label": "Daily" },
          { "value": "weekly", "label": "Weekly" },
          { "value": "recent", "label": "Recent" },
          { "value": "last10sites", "label": "Last 10 sites" }
        ]
      }
    ]
}