/usr/share/webext/bulk-media-downloader/manifest.json is in webext-bulk-media-downloader 0.2.1-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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | {
"name": "Bulk Media Downloader",
"short_name": "ibmdownloader",
"description": "Grab and download media (image and video) sources by monitoring network (like FlashGot)",
"author": "InBasic",
"version": "0.2.1",
"manifest_version": 2,
"permissions": [
"storage",
"tabs",
"<all_urls>",
"webRequest",
"downloads",
"management",
"notifications",
"contextMenus"
],
"background": {
"scripts": [
"jszip.js",
"save-images.js",
"common.js"
]
},
"browser_action": {
"default_icon": {
"16": "data/icons/16.png",
"32": "data/icons/32.png"
}
},
"homepage_url": "http://add0n.com/media-tools.html",
"icons": {
"16": "data/icons/16.png",
"48": "data/icons/48.png",
"128": "data/icons/128.png"
},
"web_accessible_resources": [
"data/inject/index.html"
],
"options_ui": {
"page": "data/options/index.html",
"chrome_style": true
},
"applications": {
"gecko": {
"id": "{72b2e02b-3a71-4895-886c-fd12ebe36ba3}"
}
}
}
|