-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
52 lines (43 loc) · 982 Bytes
/
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
{
"manifest_version": 2,
"name": "jump",
"description": "Remember sites using words, not long URLs.",
"version": "1.0.3",
"omnibox": {
"keyword" : "ju"
},
"icons": {
"16": "icon1_16.png",
"64": "icon1_64.png"
},
"background": {
"scripts": [
"utils.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icon1_64.png",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' https://fonts.googleapis.com; object-src 'self'",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file://*/*"
],
"js": [
"utils.js",
"js/jquery.js",
"popup.js",
"list.js"
]
}
],
"permissions": [
"storage",
"tabs"
]
}