-
Notifications
You must be signed in to change notification settings - Fork 40
/
manifest.json
74 lines (74 loc) · 1.75 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
67
68
69
70
71
72
73
74
{
"manifest_version": 2,
"name": "Vichrome",
"version": "0.12.0",
"description": "vi like interface for Google Chrome™. For every Google Chrome™ user who hate using a mouse.",
"background": {
"persistent": true,
"page": "background.html"
},
"options_page": "options.html",
"icons":{
"16" :"icons/16.png",
"48" :"icons/48.png",
"128":"icons/128.png"
},
"permissions": [
"tabs",
"bookmarks",
"history",
"unlimitedStorage",
"clipboardRead",
"clipboardWrite",
"storage",
"http://www.google.com/",
"https://www.google.com/"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": [
"css/vichrome.css"
],
"js": [
"lib/jquery-2.0.1.min.js",
"lib/migemo.js",
"lib/jquery.highlight-3.js",
"lib/jsapi",
"vichrome.js",
"utils.js",
"key.js",
"register.js",
"view.js",
"search.js",
"mode.js",
"command.js",
"eventhandler.js",
"model.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"web_accessible_resources": [
"commandbox.html",
"lib/jquery-2.0.1.min.map",
"lib/dicts/a2.txt",
"lib/dicts/alpha2.txt",
"lib/dicts/ba2.txt",
"lib/dicts/da2.txt",
"lib/dicts/ga2.txt",
"lib/dicts/ha2.txt",
"lib/dicts/ka2.txt",
"lib/dicts/ma2.txt",
"lib/dicts/na2.txt",
"lib/dicts/pa2.txt",
"lib/dicts/ra2.txt",
"lib/dicts/sa2.txt",
"lib/dicts/ta2.txt",
"lib/dicts/wa2.txt",
"lib/dicts/ya2.txt",
"lib/dicts/za2.txt"
],
"content_security_policy": "script-src 'self' https://www.google.com; object-src 'self'"
}