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 // This features file defines permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
6 // under src/chrome. | 6 // under src/chrome. |
7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
9 | 9 |
10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
701 "plugin": { | 701 "plugin": { |
702 "channel": "stable", | 702 "channel": "stable", |
703 "extension_types": ["extension", "legacy_packaged_app"] | 703 "extension_types": ["extension", "legacy_packaged_app"] |
704 }, | 704 }, |
705 "power": { | 705 "power": { |
706 "channel": "stable", | 706 "channel": "stable", |
707 "extension_types": [ | 707 "extension_types": [ |
708 "extension", "legacy_packaged_app", "platform_app" | 708 "extension", "legacy_packaged_app", "platform_app" |
709 ] | 709 ] |
710 }, | 710 }, |
711 "preferencesPrivate": { | 711 "preferencesPrivate": [{ |
712 "channel": "dev", | 712 "channel": "dev", |
not at google - send to devlin
2014/05/21 20:11:27
let's just change this to "stable", weird having a
Rune Fevang
2014/05/21 20:18:28
Sure, I was just worried I might accidentally move
| |
713 "extension_types": [ | 713 "extension_types": [ |
714 "extension" | 714 "extension" |
715 ], | 715 ], |
716 "whitelist": [ | 716 "whitelist": [ |
717 "C41AD9DCD670210295614257EF8C9945AD68D86E", // Google Now | 717 "C41AD9DCD670210295614257EF8C9945AD68D86E" // Google Now |
718 ] | |
719 }, { | |
720 "channel": "stable", | |
721 "extension_types": ["extension"], | |
722 "whitelist": [ | |
718 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 | 723 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 |
719 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 | 724 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 |
720 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 | 725 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 |
721 ] | 726 ] |
722 }, | 727 }], |
723 "principalsPrivate": { | 728 "principalsPrivate": { |
724 "channel": "stable", | 729 "channel": "stable", |
725 "extension_types": ["extension"], | 730 "extension_types": ["extension"], |
726 "whitelist": [ | 731 "whitelist": [ |
727 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) | 732 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) |
728 ] | 733 ] |
729 }, | 734 }, |
730 "privacy": { | 735 "privacy": { |
731 "channel": "stable", | 736 "channel": "stable", |
732 "extension_types": ["extension", "legacy_packaged_app"] | 737 "extension_types": ["extension", "legacy_packaged_app"] |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
990 // Only allowed for whitelisted extensions until all the caveats are | 995 // Only allowed for whitelisted extensions until all the caveats are |
991 // addressed. Tracked in crbug/285151. | 996 // addressed. Tracked in crbug/285151. |
992 "channel": "stable", | 997 "channel": "stable", |
993 "extension_types": ["extension"], | 998 "extension_types": ["extension"], |
994 "location": "component", | 999 "location": "component", |
995 "whitelist": [ | 1000 "whitelist": [ |
996 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1001 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
997 ] | 1002 ] |
998 }] | 1003 }] |
999 } | 1004 } |
OLD | NEW |