OLD | NEW |
---|---|
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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
299 "extension_types": ["extension"] | 299 "extension_types": ["extension"] |
300 }, | 300 }, |
301 "signature": { | 301 "signature": { |
302 "channel": "stable", | 302 "channel": "stable", |
303 "extension_types": "all" | 303 "extension_types": "all" |
304 }, | 304 }, |
305 "spellcheck": { | 305 "spellcheck": { |
306 "channel": "dev", | 306 "channel": "dev", |
307 "extension_types": ["extension"] | 307 "extension_types": ["extension"] |
308 }, | 308 }, |
309 "storage": { | |
310 "channel": "dev", | |
311 "extension_types": "all", | |
not at google - send to devlin
2013/05/23 16:56:18
hosted apps shouldn't have access, should be exten
Joao da Silva
2013/05/24 21:31:49
Done.
| |
312 "min_manifest_version": 2 | |
313 }, | |
314 "storage.managed_schema": { | |
315 "channel": "dev", | |
316 "extension_types": "all", | |
not at google - send to devlin
2013/05/23 16:56:18
ditto
Joao da Silva
2013/05/24 21:31:49
Done.
not at google - send to devlin
2013/05/25 00:50:57
incidentally do you really need entries for both?
| |
317 "min_manifest_version": 2 | |
318 }, | |
309 "system_indicator": { | 319 "system_indicator": { |
310 "channel": "dev", | 320 "channel": "dev", |
311 "extension_types": ["extension", "packaged_app", "platform_app"] | 321 "extension_types": ["extension", "packaged_app", "platform_app"] |
312 }, | 322 }, |
313 "theme": { | 323 "theme": { |
314 "channel": "stable", | 324 "channel": "stable", |
315 "extension_types": ["theme"] | 325 "extension_types": ["theme"] |
316 }, | 326 }, |
317 "tts_engine": { | 327 "tts_engine": { |
318 "channel": "stable", | 328 "channel": "stable", |
319 "extension_types": ["extension", "packaged_app"] | 329 "extension_types": ["extension", "packaged_app"] |
320 }, | 330 }, |
321 "update_url": { | 331 "update_url": { |
322 "channel": "stable", | 332 "channel": "stable", |
323 "extension_types": "all" | 333 "extension_types": "all" |
324 }, | 334 }, |
325 "version": { | 335 "version": { |
326 "channel": "stable", | 336 "channel": "stable", |
327 "extension_types": "all" | 337 "extension_types": "all" |
328 }, | 338 }, |
329 "web_accessible_resources": { | 339 "web_accessible_resources": { |
330 "channel": "stable", | 340 "channel": "stable", |
331 "extension_types": [ | 341 "extension_types": [ |
332 "extension", "packaged_app", "hosted_app" | 342 "extension", "packaged_app", "hosted_app" |
333 ] | 343 ] |
334 } | 344 } |
335 } | 345 } |
OLD | NEW |