This file is indexed.

/usr/share/webext/https-everywhere/manifest.json is in webext-https-everywhere 2018.8.22-1~deb9u1.

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
{
    "applications": {
        "gecko": {
            "id": "https-everywhere-eff@eff.org",
            "update_url": "https://www.eff.org/files/https-everywhere-updates.json"
        }
    },
    "author": "extension-devs@eff.org",
    "background": {
        "scripts": [
            "background-scripts/bootstrap.js",
            "background-scripts/util.js",
            "background-scripts/update_channels.js",
            "background-scripts/update.js",
            "background-scripts/rules.js",
            "background-scripts/store.js",
            "external/pako-1.0.5/pako_inflate.min.js",
            "background-scripts/incognito.js",
            "background-scripts/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "38": "images/icons/icon-active-38.png"
        },
        "default_popup": "pages/popup/index.html",
        "default_title": "__MSG_about_ext_name__"
    },
    "default_locale": "en",
    "description": "__MSG_about_ext_description__",
    "devtools_page": "pages/devtools/index.html",
    "homepage_url": "https://www.eff.org/https-everywhere",
    "icons": {
        "128": "images/icons/icon-active-128.png",
        "48": "images/icons/icon-active-48.png"
    },
    "incognito": "spanning",
    "manifest_version": 2,
    "minimum_chrome_version": "55",
    "name": "__MSG_about_ext_name__",
    "options_ui": {
        "page": "pages/options/index.html"
    },
    "permissions": [
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "cookies",
        "storage",
        "*://*/*",
        "ftp://*/*"
    ],
    "version": "2018.8.22",
    "web_accessible_resources": [
        "/pages/cancel/index.html"
    ]
}