-
-
Notifications
You must be signed in to change notification settings - Fork 260
/
Copy pathmanifest.json
133 lines (133 loc) · 3.87 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
{
"author": "[email protected]",
"action": {
"default_icon": {
"19": "icons/enabled_19.png",
"38": "icons/enabled_38.png"
},
"default_popup": "pages/action.html",
"default_title": "__MSG_name__\n\n__MSG_noActiveState__"
},
"background": {
"service_worker": "background/worker.js",
"type": "module"
},
"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/request_handlers.js",
"content/commands.js",
"content/extend_click.js",
"content/extend_click_ff.js",
"content/frontend.js"
],
"match_about_blank": true,
"match_origin_as_fallback": true,
"matches": [ "<all_urls>" ],
"run_at": "document_start"
}, {
"all_frames": true,
"js": [
"content/extend_click_vc.js"
],
"match_about_blank": true,
"match_origin_as_fallback": true,
"matches": [ "<all_urls>" ],
"run_at": "document_start",
"world": "MAIN"
} ],
"content_security_policy": {
"extension_pages": "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",
"host_permissions": [
"<all_urls>"
],
"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": 3,
"minimum_chrome_version": "121",
"name": "__MSG_name__",
"offline_enabled": true,
"omnibox": {
"keyword": "v"
},
"optional_host_permissions": [
"chrome://*/*",
"chrome://new-tab-page/*"
],
"optional_permissions": [
"bookmarks",
"downloads",
"downloads.shelf",
"cookies",
"contentSettings"
],
"options_ui": {
"page": "pages/options.html",
"open_in_tab": true
},
"permissions": [
"clipboardRead",
"clipboardWrite",
"favicon",
"history",
"notifications",
"offscreen",
"scripting",
"search",
"sessions",
"storage",
"tabGroups",
"tabs",
"webNavigation"
],
"short_name": "Vimium C",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "2.11.3",
"version_name": "2.11.3",
"web_accessible_resources": [ {
"resources": [ "content/*", "front/vomnibar*", "lib/*" ],
"matches": [ "<all_urls>", "chrome-extension://*/*" ],
"use_dynamic_url": false
} ]
}