Parent: [9461f7] (diff)

Child: [401f23] (diff)

Download this file

manifest-MF.json    28 lines (22 with data), 1.1 kB

 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": "Save to Recoll",
"version": "1.0",
"description": "Enqueue a WEB page for storage and indexing by Recoll.",
"icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png",
"128": "icon128-96.png" },
"applications": { "gecko": { "id": "recollwebext@recoll-org",
"strict_min_version": "51.0" } },
"permissions": [ "activeTab", "tabs", "webNavigation", "contextMenus",
"notifications", "storage", "downloads" ],
"browser_action": { "default_icon": { "16": "icon16.png" },
"default_title": "Save to Recoll" },
"background": { "scripts": [ "background.js" ] },
"content_scripts": [
{"matches": ["*://*/*"], "js": ["content.js", "md5.js"]}
],
"options_ui": {"page": "options.html", "open_in_tab": true},
"commands": { "_execute_browser_action":
{ "description": "Save Page",
"suggested_key": { "default": "Alt+A" } } }
}