forked from Pitmairen/selection-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
66 lines (55 loc) · 1.93 KB
/
manifest.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "Selection Search",
"version": "0.8.48",
"manifest_version" : 2,
"description": "Search for the selected text in search engines",
"minimum_chrome_version": "35",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"options_page": "options/options.html",
"background": {
"page" : "background/background.html",
"persistent" : true
},
"browser_action": {
"default_popup": "browseraction/popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file://*/*"],
"js": ["common/browsersupport.js", "popup/popup.js", "popup/popup_modifier.js", "popup/circular_popup.js", "popup/activators.js", "common/actionutils.js", "popup/selection_util.js",
"popup/actions.js", "popup/style.js", "popup/button.js", "common/encoding.js", "popup/event_utils.js",
"common/urlparse.js", "common/jquery-3.3.1.min.js",
"old/engine-editor.js", "old/extractform.js",
"popup/positioning.js", "popup/autohide.js", "popup/search_engine_hotkeys.js", "popup/init_script.js"],
"run_at" : "document_end",
"all_frames" : true
},
{
"matches": ["http://mycroftproject.com/*", "https://mycroftproject.com/*"],
"js": ["common/browsersupport.js", "old/opensearch.js", "sites/mycroft.js"],
"run_at" : "document_end"
}
],
"permissions": [
"contextMenus",
"storage",
"notifications",
"clipboardWrite",
"tabs"
],
"web_accessible_resources": [
"img/folder.png",
"img/icon16.png",
"img/icon48.png",
"img/close.png",
"img/ajax-loader.gif",
"img/copy.png",
"img/default_favicon.png",
"old/postsearch.html",
"old/postsearch.js"
]
}