Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(544)

Side by Side Diff: chrome/common/extensions/api/_manifest_features.json

Issue 13971005: Basic multi-module support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix copyright for presubmit Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/extension_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 { 5 {
6 "app": { 6 "app": {
7 "channel": "stable", 7 "channel": "stable",
8 "extension_types": ["packaged_app", "hosted_app", "platform_app"] 8 "extension_types": ["packaged_app", "hosted_app", "platform_app"]
9 }, 9 },
10 // The default platform app CSP can only be overridden by whitelisted apps. 10 // The default platform app CSP can only be overridden by whitelisted apps.
(...skipping 11 matching lines...) Expand all
22 "ppleadejekpmccmnpjdimmlfljlkdfej", // Google Talk alpha 22 "ppleadejekpmccmnpjdimmlfljlkdfej", // Google Talk alpha
23 "ljclpkphhpbpinifbeabbhlfddcpfdde", // Google Talk debug 23 "ljclpkphhpbpinifbeabbhlfddcpfdde", // Google Talk debug
24 "lphgohfeebnhcpiohjndkgbhhkoapkjc" // Apps Debugger 24 "lphgohfeebnhcpiohjndkgbhhkoapkjc" // Apps Debugger
25 ] 25 ]
26 }, 26 },
27 "app.background": { 27 "app.background": {
28 "channel": "stable", 28 "channel": "stable",
29 "extension_types": ["platform_app"], 29 "extension_types": ["platform_app"],
30 "min_manifest_version": 2 30 "min_manifest_version": 2
31 }, 31 },
32 "app.launch": {
33 "channel": "stable",
34 "extension_types": ["packaged_app", "hosted_app"]
35 },
36 "app.isolation": { 32 "app.isolation": {
37 "channel": "stable", 33 "channel": "stable",
38 // Platform apps always have isolated storage, thus they cannot specify it 34 // Platform apps always have isolated storage, thus they cannot specify it
39 // via the manifest. 35 // via the manifest.
40 "extension_types": ["packaged_app", "hosted_app"] 36 "extension_types": ["packaged_app", "hosted_app"]
41 }, 37 },
38 "app.launch": {
39 "channel": "stable",
40 "extension_types": ["packaged_app", "hosted_app"]
41 },
42 "author": { 42 "author": {
43 "channel": "stable", 43 "channel": "stable",
44 "extension_types": "all" 44 "extension_types": "all"
45 }, 45 },
46 "background": { 46 "background": {
47 "channel": "stable", 47 "channel": "stable",
48 "extension_types": [ 48 "extension_types": [
49 // Platform apps specify their background page via app.background. 49 // Platform apps specify their background page via app.background.
50 "extension", "packaged_app", "hosted_app" 50 "extension", "packaged_app", "hosted_app"
51 ] 51 ]
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 "location": "component" 136 "location": "component"
137 }, 137 },
138 { 138 {
139 "channel": "stable", 139 "channel": "stable",
140 "extension_types": ["packaged_app", "platform_app"], 140 "extension_types": ["packaged_app", "platform_app"],
141 "whitelist": [ 141 "whitelist": [
142 "nmmhkkegccagdldgiimedpiccmgmieda" 142 "nmmhkkegccagdldgiimedpiccmgmieda"
143 ] 143 ]
144 } 144 }
145 ], 145 ],
146 "export": {
147 "channel": "dev",
148 "extension_types": ["shared_module"],
149 "whitelist": [
150 "gpcckkmippodnppallflahfabmeilgjg", // browser and unit tests
151 "6EAED1924DB611B6EEF2A664BD077BE7EAD33B8F"
152 ]
153 },
146 "externally_connectable": { 154 "externally_connectable": {
147 "channel": "stable", 155 "channel": "stable",
148 "extension_types": [ 156 "extension_types": [
149 "extension", "hosted_app", "packaged_app", "platform_app" 157 "extension", "hosted_app", "packaged_app", "platform_app"
150 ] 158 ]
151 }, 159 },
152 "file_browser_handlers": { 160 "file_browser_handlers": {
153 "channel": "stable", 161 "channel": "stable",
154 "extension_types": ["extension", "packaged_app"] 162 "extension_types": ["extension", "packaged_app"]
155 }, 163 },
156 "media_galleries_handlers": {
157 "channel": "stable",
158 "extension_types": ["packaged_app", "platform_app"]
159 },
160 "file_handlers": { 164 "file_handlers": {
161 "channel": "stable", 165 "channel": "stable",
162 "extension_types": ["platform_app"] 166 "extension_types": ["platform_app"]
163 }, 167 },
164 "homepage_url": { 168 "homepage_url": {
165 "channel": "stable", 169 "channel": "stable",
166 "extension_types": ["extension", "packaged_app"] 170 "extension_types": ["extension", "packaged_app"]
167 }, 171 },
168 "icons": { 172 "icons": {
169 "channel": "stable", 173 "channel": "stable",
170 "extension_types": "all" 174 "extension_types": "all"
171 }, 175 },
176 "import": {
177 "channel": "dev",
178 "extension_types": "all"
179 },
172 "incognito": { 180 "incognito": {
173 "channel": "stable", 181 "channel": "stable",
174 "extension_types": ["extension", "packaged_app"] 182 "extension_types": ["extension", "packaged_app"]
175 }, 183 },
176 "input_components": { 184 "input_components": {
177 "channel": "stable", 185 "channel": "stable",
178 "extension_types": ["extension", "packaged_app"] 186 "extension_types": ["extension", "packaged_app"]
179 }, 187 },
180 "intents": { 188 "intents": {
181 "channel": "stable", 189 "channel": "stable",
182 "extension_types": [ 190 "extension_types": [
183 "extension", "packaged_app", "hosted_app", "platform_app" 191 "extension", "packaged_app", "hosted_app", "platform_app"
184 ] 192 ]
185 }, 193 },
186 "key": { 194 "key": {
187 "channel": "stable", 195 "channel": "stable",
188 "extension_types": "all" 196 "extension_types": "all"
189 }, 197 },
198 "kiosk_enabled": {
199 "channel": "stable",
200 "extension_types": [
201 "platform_app"
202 ]
203 },
190 "manifest_version": { 204 "manifest_version": {
191 "channel": "stable", 205 "channel": "stable",
192 "extension_types": "all" 206 "extension_types": "all"
193 }, 207 },
208 "media_galleries_handlers": {
209 "channel": "stable",
210 "extension_types": ["packaged_app", "platform_app"]
211 },
194 "mime_types": { 212 "mime_types": {
195 "channel": "stable", 213 "channel": "stable",
196 "extension_types": [ "extension", "packaged_app", "platform_app" ], 214 "extension_types": [ "extension", "packaged_app", "platform_app" ],
197 "whitelist": [ 215 "whitelist": [
198 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests 216 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests
199 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice 217 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice
200 "ionpfmkccalenbmnddpbmocokhaknphg", // QuickOffice Dev 218 "ionpfmkccalenbmnddpbmocokhaknphg", // QuickOffice Dev
201 "bpmcpldpdmajfigpchkicefoigmkfalc", // Quickoffice component extension 219 "bpmcpldpdmajfigpchkicefoigmkfalc", // Quickoffice component extension
202 "ehibbfinohgbchlgdbfpikodjaojhccn" // Editor 220 "ehibbfinohgbchlgdbfpikodjaojhccn" // Editor
203 ] 221 ]
204 }, 222 },
205 "minimum_chrome_version": { 223 "minimum_chrome_version": {
206 "channel": "stable", 224 "channel": "stable",
207 "extension_types": [ 225 "extension_types": [
208 "extension", "packaged_app", "hosted_app", "platform_app" 226 "extension", "packaged_app", "hosted_app", "platform_app"
209 ] 227 ]
210 }, 228 },
211 "nacl_modules": { 229 "nacl_modules": {
212 "channel": "stable", 230 "channel": "stable",
213 "extension_types": [ 231 "extension_types": [
214 "extension", "packaged_app", "hosted_app", "platform_app" 232 "extension", "packaged_app", "hosted_app", "platform_app"
215 ] 233 ]
216 }, 234 },
217 "name": { 235 "name": {
218 "channel": "stable", 236 "channel": "stable",
219 "extension_types": "all" 237 "extension_types": "all"
220 }, 238 },
221 "kiosk_enabled": { 239 "oauth2": {
222 "channel": "stable", 240 "channel": "stable",
223 "extension_types": [ 241 "extension_types": [
224 "platform_app" 242 "extension", "packaged_app", "platform_app"
225 ] 243 ]
226 }, 244 },
227 "offline_enabled": { 245 "offline_enabled": {
228 "channel": "stable", 246 "channel": "stable",
229 "extension_types": [ 247 "extension_types": [
230 "extension", "packaged_app", "hosted_app", "platform_app" 248 "extension", "packaged_app", "hosted_app", "platform_app"
231 ] 249 ]
232 }, 250 },
233 "omnibox": { 251 "omnibox": {
234 "channel": "stable", 252 "channel": "stable",
235 "extension_types": ["extension", "packaged_app"] 253 "extension_types": ["extension", "packaged_app"]
236 }, 254 },
237 "optional_permissions": { 255 "optional_permissions": {
238 "channel": "stable", 256 "channel": "stable",
239 "extension_types": [ 257 "extension_types": [
240 "extension", "packaged_app", "hosted_app", "platform_app" 258 "extension", "packaged_app", "hosted_app", "platform_app"
241 ] 259 ]
242 }, 260 },
243 "options_page": { 261 "options_page": {
244 "channel": "stable", 262 "channel": "stable",
245 "extension_types": [ 263 "extension_types": [
246 "extension", "packaged_app", "hosted_app" 264 "extension", "packaged_app", "hosted_app"
247 ] 265 ]
248 }, 266 },
249 "oauth2": {
250 "channel": "stable",
251 "extension_types": [
252 "extension", "packaged_app", "platform_app"
253 ]
254 },
255 "page_action": { 267 "page_action": {
256 "channel": "stable", 268 "channel": "stable",
257 "extension_types": ["extension"] 269 "extension_types": ["extension"]
258 }, 270 },
259 "page_actions": { 271 "page_actions": {
260 "channel": "stable", 272 "channel": "stable",
261 "extension_types": ["extension"], 273 "extension_types": ["extension"],
262 "max_manifest_version": 1 274 "max_manifest_version": 1
263 }, 275 },
264 "page_launcher": { 276 "page_launcher": {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 "channel": "stable", 332 "channel": "stable",
321 "extension_types": "all" 333 "extension_types": "all"
322 }, 334 },
323 "web_accessible_resources": { 335 "web_accessible_resources": {
324 "channel": "stable", 336 "channel": "stable",
325 "extension_types": [ 337 "extension_types": [
326 "extension", "packaged_app", "hosted_app" 338 "extension", "packaged_app", "hosted_app"
327 ] 339 ]
328 } 340 }
329 } 341 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/extension_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698