forked from goetzc/contextSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
62 lines (53 loc) · 1.18 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
{
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "3.65",
"author": "Olivier de Broqueville",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"content_security_policy" : "script-src 'self'; object-src 'self'; img-src 'self' https://get-favicons.herokuapp.com/*",
"background": {
"scripts": [
"scripts/background.js",
"scripts/sort.js"
]
},
"permissions": [
"contextMenus",
"storage",
"tabs",
"notifications"
],
"omnibox": {
"keyword" : "cs"
},
"icons": {
"16": "icons/icon_16.png",
"20": "icons/icon_20.png",
"24": "icons/icon_24.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"64": "icons/icon_64.png",
"128": "icons/icon_128.png",
"256": "icons/icon_256.png",
"512": "icons/icon_512.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"scripts/selection.js",
"scripts/sort.js"
]
}
]
}