forked from gdh1995/vimium-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
159 lines (159 loc) · 4.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"author": "gdh1995@qq.com",
"background": {
"persistent": true,
"scripts": [
"background/define.js",
"background/store.js",
"background/utils.js",
"background/browser.js",
"background/normalize_urls.js",
"background/parse_urls.js",
"background/settings.js",
"background/ports.js",
"background/exclusions.js",
"background/ui_css.js",
"background/i18n.js",
"background/key_mappings.js",
"background/run_commands.js",
"background/run_keys.js",
"background/tools.js",
"background/clipboard.js",
"background/eval_urls.js",
"background/open_urls.js",
"background/frame_commands.js",
"background/filter_tabs.js",
"background/tab_commands.js",
"background/all_commands.js",
"background/request_handlers.js",
"background/main.js"
]
},
"browser_action": {
"default_icon": {
"19": "icons/enabled_19.png",
"38": "icons/enabled_38.png"
},
"default_popup": "pages/popup.html",
"default_title": "__MSG_name__\n\n__MSG_noActiveState__"
},
"browser_specific_settings": {
"gecko": {
"id": "vimium-c@gdh1995.cn",
"strict_min_version": "78.0"
}
},
"commands": {
"createTab": {
"description": "__MSG_createTab_s__"
},
"goBack": {
"description": "__MSG_goBack_s__"
},
"goForward": {
"description": "__MSG_goForward_s__"
},
"previousTab": {
"description": "__MSG_previousTab_s__"
},
"quickNext": {
"description": "__MSG_quickNext_s__"
},
"reloadTab": {
"description": "__MSG_reloadTab_s__"
},
"userCustomized1": {
"description": "__MSG_userCustomized__ 1"
},
"userCustomized2": {
"description": "__MSG_userCustomized__ 2"
}
},
"content_scripts": [ {
"all_frames": true,
"js": [
"lib/env.js",
"lib/utils.js",
"lib/keyboard_utils.js",
"lib/dom_utils.js",
"lib/rect.js",
"content/dom_ui.js",
"content/async_dispatcher.js",
"content/hud.js",
"content/insert.js",
"content/key_handler.js",
"content/port.js",
"content/pagination.js",
"content/marks.js",
"content/local_links.js",
"content/hint_filters.js",
"content/link_actions.js",
"content/link_hints.js",
"content/omni.js",
"content/mode_find.js",
"content/visual.js",
"content/scroller.js",
"content/commands.js",
"content/request_handlers.js",
"content/extend_click.js",
"content/extend_click_ff.js",
"content/frontend.js"
],
"match_about_blank": true,
"matches": [ "<all_urls>" ],
"run_at": "document_start"
} ],
"content_security_policy": "script-src 'self'; style-src 'self' 'unsafe-inline'; object-src 'none'",
"default_locale": "en",
"description": "__MSG_description__",
"homepage_url": "https://github.com/gdh1995/vimium-c",
"icons": {
"128": "icons/icon128.png",
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png"
},
"incognito": "spanning",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnaZQnkvrHvNlwXPnSfavEya+9sPtVgBR2hWLsNvwdv6+zHRGr/qhqEbtof1v7gDXzpC5+Dr4kOay6aflw5CaFzA1zyVJySAjpb0RkVh774kp9msRpjyb39obSIWAIB76PTwawEAE+K1f26jXDbTC2gEBe4OWk5KW9u9+KoTmeKLHo73ScR1jFcFaOTbrhwHtIDqj00vpIfrSAofpLIq1gP//Og+FoOT4dF107fwlVfDJuu171svuT68wmcKStl6OANxcnXCXE6OWbeZcjMehcQH41wzTtDugmt0o8w+hJ2WVugwWWmGmE8qSiwo9QYZTJW+5EvMcmNZWUmPbTLGkGQIDAQAB",
"manifest_version": 2,
"minimum_chrome_version": "32",
"name": "__MSG_name__",
"offline_enabled": true,
"omnibox": {
"keyword": "v"
},
"optional_permissions": [
"chrome://*/*",
"chrome://new-tab-page/*",
"contentSettings",
"cookies",
"downloads",
"downloads.shelf"
],
"options_page": "pages/options.html",
"options_ui": {
"page": "pages/options.html",
"chrome_style": false,
"open_in_tab": true
},
"permissions": [
"bookmarks",
"clipboardRead",
"clipboardWrite",
"history",
"notifications",
"sessions",
"storage",
"tabs",
"webNavigation",
"<all_urls>"
],
"short_name": "Vimium C",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.95.0",
"web_accessible_resources": [
"content/*",
"front/vomnibar.*",
"lib/*"
]
}