This file is indexed.

/usr/share/chromium/extensions/ublock-origin/manifest.json is in chromium-ublock-origin 1.13.8+dfsg-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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
    "manifest_version": 2,

    "name": "uBlock Origin",
    "version": "1.13.8",

    "commands": {
        "launch-element-zapper": {
            "description": "__MSG_popupTipZapper__"
        },
        "launch-element-picker": {
            "description": "__MSG_popupTipPicker__"
        },
        "launch-logger": {
            "description": "__MSG_popupTipLog__"
        }
    },
    "default_locale": "en",
    "description": "__MSG_extShortDesc__",
    "icons": {
        "16": "img/icon_16.png",
        "128": "img/icon_128.png"
    },

    "browser_action": {
        "default_icon": {
            "19": "img/browsericons/icon19.png",
            "38": "img/browsericons/icon38.png"
        },
        "default_title": "uBlock Origin",
        "default_popup": "popup.html"
    },

    "author": "All uBlock Origin contributors",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": ["http://*/*", "https://*/*"],
            "js": ["js/vapi-client.js", "js/contentscript.js"],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": ["http://*/*", "https://*/*"],
            "js": ["js/scriptlets/subscriber.js"],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "incognito": "split",
    "minimum_chrome_version": "38.0",
    "optional_permissions": [ "file:///*" ],
    "options_page": "dashboard.html",
    "options_ui": {
        "page": "options_ui.html"
    },
    "permissions": [
        "contextMenus",
        "privacy",
        "storage",
        "tabs",
        "unlimitedStorage",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "<all_urls>"
    ],
    "short_name": "uBlockâ‚€",
    "storage": {
        "managed_schema": "managed_storage.json"
    }
}