OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 { |
| 5 "alpha": { |
| 6 "channel": "stable", |
| 7 "contexts": ["blessed_extension"], |
| 8 "dependencies": ["permission:alpha"] |
| 9 }, |
| 10 "beta": { |
| 11 "extension_types": ["extension", "platform_app"], |
| 12 "whitelist": ["aaa", "bbb"], |
| 13 "blacklist": ["zzz", "yyy"], |
| 14 "component_extensions_auto_granted": false |
| 15 }, |
| 16 "gamma": { |
| 17 "channel": "beta", |
| 18 "platforms": ["win", "mac"], |
| 19 "contexts": ["blessed_extension"], |
| 20 "extension_types": ["extension"], |
| 21 "internal": true |
| 22 }, |
| 23 "gamma.child": { |
| 24 "whitelist": ["ccc"], |
| 25 "dependencies": ["permission:gamma.child"], |
| 26 "platforms": ["linux"] |
| 27 }, |
| 28 "gamma.unparented": { |
| 29 "blacklist": ["ddd"], |
| 30 "contexts": ["unblessed_extension"], |
| 31 "noparent": true |
| 32 }, |
| 33 "delta": { |
| 34 "contexts": ["blessed_extension", "webui"], |
| 35 "matches": ["*://example.com/*"] |
| 36 }, |
| 37 "complex": [{ |
| 38 "channel": "beta", |
| 39 "contexts": ["blessed_extension"], |
| 40 "extension_types": ["extension"], |
| 41 "whitelist": ["aaa"] |
| 42 }, { |
| 43 "channel": "stable", |
| 44 "contexts": ["blessed_extension"], |
| 45 "extension_types": ["extension"], |
| 46 "default_parent": true |
| 47 }], |
| 48 "complex.child": { |
| 49 "platforms": ["win"], |
| 50 "dependencies": ["permission:complex.child"] |
| 51 }, |
| 52 "uncompiled": { |
| 53 "contexts": ["blessed_extension"], |
| 54 "nocompile": true |
| 55 } |
| 56 } |
OLD | NEW |