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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 | 7 |
8 { | 8 { |
9 "activityLogPrivate": { | 9 "activityLogPrivate": { |
10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 "bookmarks.import": { | 95 "bookmarks.import": { |
96 "extension_types": ["extension"], | 96 "extension_types": ["extension"], |
97 "location": "component" | 97 "location": "component" |
98 }, | 98 }, |
99 "brailleDisplayPrivate": { | 99 "brailleDisplayPrivate": { |
100 "dependencies": ["permission:brailleDisplayPrivate"], | 100 "dependencies": ["permission:brailleDisplayPrivate"], |
101 "contexts": ["blessed_extension"] | 101 "contexts": ["blessed_extension"] |
102 }, | 102 }, |
103 "browserAction": { | 103 "browserAction": { |
104 "dependencies": ["manifest:browser_action"], | 104 "dependencies": ["manifest:browser_action"], |
| 105 "contexts": ["blessed_extension", "unblessed_extension"] |
| 106 }, |
| 107 // The following API enabled for dev pending resolution of security concerns. |
| 108 // It is enabled for stable only for whitelisted extensions. |
| 109 "browserAction.openPopup": [{ |
| 110 "channel": "dev", |
| 111 "dependencies": ["manifest:browser_action"], |
105 "contexts": ["blessed_extension"] | 112 "contexts": ["blessed_extension"] |
106 }, | 113 }, { |
| 114 "channel": "stable", |
| 115 "dependencies": ["manifest:browser_action"], |
| 116 "whitelist": [ |
| 117 "enhhojjnijigcajfphajepfemndkmdlo", // Dev |
| 118 "pkedcjkdefgpdelpbcmbmeomcjbeemfm", // Trusted Tester |
| 119 "fmfcbgogabcbclcofgocippekhfcmgfj", // Staging |
| 120 "hfaagokkkhdbgiakmmlclaapfelnkoah", // Canary |
| 121 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Trusted Tester (public) |
| 122 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264" // Release |
| 123 ], |
| 124 "contexts": ["blessed_extension"] |
| 125 }], |
107 "browsingData": { | 126 "browsingData": { |
108 "dependencies": ["permission:browsingData"], | 127 "dependencies": ["permission:browsingData"], |
109 "contexts": ["blessed_extension"] | 128 "contexts": ["blessed_extension"] |
110 }, | 129 }, |
111 "cast.channel": { | 130 "cast.channel": { |
112 "dependencies": ["permission:cast"], | 131 "dependencies": ["permission:cast"], |
113 "contexts": ["blessed_extension"] | 132 "contexts": ["blessed_extension"] |
114 }, | 133 }, |
115 "chromeosInfoPrivate": { | 134 "chromeosInfoPrivate": { |
116 "platforms": ["chromeos"], | 135 "platforms": ["chromeos"], |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 "internal": true, | 691 "internal": true, |
673 "channel": "stable", | 692 "channel": "stable", |
674 "dependencies": ["permission:webview"], | 693 "dependencies": ["permission:webview"], |
675 "contexts": ["blessed_extension"] | 694 "contexts": ["blessed_extension"] |
676 }, | 695 }, |
677 "windows": { | 696 "windows": { |
678 "dependencies": ["api:tabs"], | 697 "dependencies": ["api:tabs"], |
679 "contexts": ["blessed_extension"] | 698 "contexts": ["blessed_extension"] |
680 } | 699 } |
681 } | 700 } |
OLD | NEW |