-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
88 lines (81 loc) · 1.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"manifest_version": 2,
"name": "Hometype",
"description": "provide key board manipulation",
"version": "2.1.4",
"permissions": [
"tabs",
"bookmarks",
"webNavigation",
"storage",
"management",
"clipboardRead",
"<all_urls>"
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"persistent": false,
"scripts": [
"lib/utility.js",
"lib/jquery-2.0.1.min.js",
"js/background/favicon.js",
"js/background/history.js",
"js/background/tab.js",
"js/background/script.js"
]
},
"options_page": "options/options.html",
"content_scripts": [{
"matches": [ "<all_urls>" ],
"css": [
"css/main.css"
],
"js": [
"lib/jquery-2.0.1.min.js",
"lib/jquery.extend.js",
"lib/utility.js",
"lib/dom.js",
"lib/jp.js",
"lib/element_wrapper.js",
"js/constants.js",
"js/default_option.js",
"js/options.js",
"js/key/sequence.js",
"js/key/map.js",
"js/viewport.js",
"js/box/select.js",
"js/box/command.js",
"js/box/help.js",
"js/hint/action.js",
"js/hint/action_map.js",
"js/hint/letter_conversion.js",
"js/hint/algorithm/standard.js",
"js/hint/algorithm/comfortable.js",
"js/hint/algorithm/custom.js",
"js/hint/key_factory.js",
"js/hint/element.js",
"js/hint/element_collection.js",
"js/processor/noop.js",
"js/processor/visual.js",
"js/processor/command.js",
"js/processor/hint.js",
"js/processor/insert.js",
"js/processor/help.js",
"js/filter.js",
"js/command.js",
"js/executer.js",
"js/homedics.js",
"js/mode.js",
"js/main.js"
],
"run_at": "document_start"
}],
"web_accessible_resources": [
"dicts/*.ml"
]
}