/usr/share/chromium/extensions/lwn4chrome/manifest.json is in chromium-lwn4chrome 1.0-2.
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 | {
"manifest_version": 2,
"name": "LWN helper",
"short_name": "lwn4chrome",
"version": "1.0",
"default_locale": "en",
"description": "Makes LWN slightly easier to read",
"icons": { "16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png" },
"author": "Andrew Pollock",
"permissions": [
"http://lwn.net/*"
],
"content_scripts": [
{
"matches": ["http://lwn.net/Articles/*", "https://lwn.net/Articles/*"],
"js": ["lwn.js"],
"run_at": "document_end"
}
]
}
|