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 "activeTab": { | 9 "activeTab": { |
10 "channel": "stable", | 10 "channel": "stable", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "extension_types": ["extension", "packaged_app"] | 131 "extension_types": ["extension", "packaged_app"] |
132 }, | 132 }, |
133 "contextMenus": { | 133 "contextMenus": { |
134 "channel": "stable", | 134 "channel": "stable", |
135 "extension_types": ["extension", "packaged_app", "platform_app"] | 135 "extension_types": ["extension", "packaged_app", "platform_app"] |
136 }, | 136 }, |
137 "cookies": { | 137 "cookies": { |
138 "channel": "stable", | 138 "channel": "stable", |
139 "extension_types": ["extension", "packaged_app"] | 139 "extension_types": ["extension", "packaged_app"] |
140 }, | 140 }, |
| 141 "diagnostics": [ |
| 142 { |
| 143 "channel": "dev", |
| 144 "extension_types": ["platform_app"] |
| 145 }, |
| 146 { |
| 147 "channel": "stable", |
| 148 "extension_types": ["platform_app"], |
| 149 "whitelist": [ |
| 150 "mlocfejafidcakdddnndjdngfmncfbeg", // CCD Development |
| 151 "ganomidahfnpdchomfgdoppjmmedlhia", // CCD Testing |
| 152 "eemlkeanncmjljgehlbplemhmdmalhdc" // CCD Release |
| 153 ] |
| 154 } |
| 155 ], |
141 "debugger": { | 156 "debugger": { |
142 "channel": "stable", | 157 "channel": "stable", |
143 "extension_types": ["extension", "packaged_app"] | 158 "extension_types": ["extension", "packaged_app"] |
144 }, | 159 }, |
145 "developerPrivate": { | 160 "developerPrivate": { |
146 "channel": "dev", | 161 "channel": "dev", |
147 "extension_types": ["platform_app"], | 162 "extension_types": ["platform_app"], |
148 "whitelist": [ | 163 "whitelist": [ |
149 "lphgohfeebnhcpiohjndkgbhhkoapkjc", // Apps Debugger | 164 "lphgohfeebnhcpiohjndkgbhhkoapkjc", // Apps Debugger |
150 "gonnpeheodhmhdjiimoiheniambmdcco", // Apps Editor old. | 165 "gonnpeheodhmhdjiimoiheniambmdcco", // Apps Editor old. |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 }, | 651 }, |
637 "webRequestBlocking": { | 652 "webRequestBlocking": { |
638 "channel": "stable", | 653 "channel": "stable", |
639 "extension_types": ["extension", "packaged_app"] | 654 "extension_types": ["extension", "packaged_app"] |
640 }, | 655 }, |
641 "webview": { | 656 "webview": { |
642 "channel": "stable", | 657 "channel": "stable", |
643 "extension_types": ["platform_app"] | 658 "extension_types": ["platform_app"] |
644 } | 659 } |
645 } | 660 } |
OLD | NEW |