Child: [226275] (diff)

Download this file

manifest-GC.json    27 lines (21 with data), 991 Bytes

 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
{
"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" },
"minimum_chrome_version": "35",
"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"]}
],
"options_ui": {"page": "options.html", "open_in_tab": true},
"commands": { "_execute_browser_action":
{ "description": "Save Page",
"suggested_key": { "default": "Alt+A" } } }
}