| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "alpha": { | 5 "alpha": { |
| 6 "channel": "stable", | 6 "channel": "stable", |
| 7 "contexts": ["blessed_extension"], | 7 "contexts": ["blessed_extension"], |
| 8 "dependencies": ["permission:alpha"] | 8 "dependencies": ["permission:alpha"], |
| 9 "max_manifest_version": 1 |
| 9 }, | 10 }, |
| 10 "beta": { | 11 "beta": { |
| 11 "channel": "dev", | 12 "channel": "dev", |
| 12 "contexts": ["blessed_extension"], | 13 "contexts": ["blessed_extension"], |
| 13 "extension_types": ["extension", "platform_app"], | 14 "extension_types": ["extension", "platform_app"], |
| 15 "location": "component", |
| 14 "whitelist": ["aaa", "bbb"], | 16 "whitelist": ["aaa", "bbb"], |
| 15 "blacklist": ["zzz", "yyy"], | 17 "blacklist": ["zzz", "yyy"], |
| 16 "component_extensions_auto_granted": false | 18 "component_extensions_auto_granted": false |
| 17 }, | 19 }, |
| 18 "gamma": { | 20 "gamma": { |
| 19 "channel": "beta", | 21 "channel": "beta", |
| 20 "platforms": ["win", "mac"], | 22 "platforms": ["win", "mac"], |
| 21 "contexts": ["blessed_extension"], | 23 "contexts": ["blessed_extension"], |
| 22 "dependencies": ["permission:gamma"], | 24 "dependencies": ["permission:gamma"], |
| 23 "extension_types": ["extension"], | 25 "extension_types": ["extension"], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 39 "contexts": ["unblessed_extension"], | 41 "contexts": ["unblessed_extension"], |
| 40 "noparent": true | 42 "noparent": true |
| 41 }, { | 43 }, { |
| 42 "channel": "stable", | 44 "channel": "stable", |
| 43 "contexts": ["unblessed_extension"], | 45 "contexts": ["unblessed_extension"], |
| 44 "noparent": true | 46 "noparent": true |
| 45 }], | 47 }], |
| 46 "delta": { | 48 "delta": { |
| 47 "channel": "dev", | 49 "channel": "dev", |
| 48 "contexts": ["blessed_extension", "webui"], | 50 "contexts": ["blessed_extension", "webui"], |
| 49 "matches": ["*://example.com/*"] | 51 "matches": ["*://example.com/*"], |
| 52 "min_manifest_version": 2 |
| 50 }, | 53 }, |
| 51 "complex": [{ | 54 "complex": [{ |
| 52 "channel": "beta", | 55 "channel": "beta", |
| 53 "contexts": ["blessed_extension"], | 56 "contexts": ["blessed_extension"], |
| 54 "extension_types": ["extension"], | 57 "extension_types": ["extension"], |
| 55 "whitelist": ["aaa"] | 58 "whitelist": ["aaa"] |
| 56 }, { | 59 }, { |
| 57 "channel": "stable", | 60 "channel": "stable", |
| 58 "contexts": ["blessed_extension"], | 61 "contexts": ["blessed_extension"], |
| 59 "extension_types": ["extension"], | 62 "extension_types": ["extension"], |
| 60 "default_parent": true | 63 "default_parent": true |
| 61 }], | 64 }], |
| 62 "complex.child": { | 65 "complex.child": { |
| 63 "platforms": ["win"], | 66 "platforms": ["win"], |
| 64 "dependencies": ["permission:complex.child"] | 67 "dependencies": ["permission:complex.child"] |
| 65 }, | 68 }, |
| 69 "allEnum": { |
| 70 "channel": "beta", |
| 71 "extension_types": "all", |
| 72 "contexts": "all" |
| 73 }, |
| 66 "uncompiled": { | 74 "uncompiled": { |
| 67 "contexts": ["blessed_extension"], | 75 "contexts": ["blessed_extension"], |
| 68 "nocompile": true | 76 "nocompile": true |
| 69 } | 77 } |
| 70 } | 78 } |
| OLD | NEW |