This file is indexed.

/usr/share/chromium/extensions/tt-rss-notifier/manifest.json is in chromium-tt-rss-notifier 0.5.2-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
{
  "name": "Tiny Tiny RSS Notifier",
  "background": {
    "scripts": ["js/background.js"],
    "persistent": false
  },
  "version": "0.5.2",
  "manifest_version": 2,
  "description": "This extension displays the number of unread articles in your Tiny Tiny RSS installation",
  "options_page": "options.html",
  "icons": { "48": "images/icon_48.png", "128": "images/icon_128.png" },
  "browser_action": {
    "default_icon": "images/normal.png",
    "default_title": "You have no unread articles."
  },
  "permissions": [
    "tabs",
    "alarms",
    "http://*/*",
    "https://*/*"]
}