OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 manifest keys implemented under src/extensions. | 5 // This features file defines manifest keys implemented under src/extensions. |
6 // See chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
Devlin
2017/04/26 01:59:37
See the directions here for how to whitelist an id
msarda
2017/04/26 11:14:35
Done.
| |
7 // well as feature.h, simple_feature.h, and feature_provider.h. | 7 // well as feature.h, simple_feature.h, and feature_provider.h. |
8 | 8 |
9 { | 9 { |
10 "action_handlers": { | 10 "action_handlers": { |
11 "channel": "stable", | 11 "channel": "stable", |
12 "extension_types": ["platform_app"], | 12 "extension_types": ["platform_app"], |
13 "platforms": ["chromeos"] | 13 "platforms": ["chromeos"] |
14 }, | 14 }, |
15 "app": { | 15 "app": { |
16 "channel": "stable", | 16 "channel": "stable", |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
325 "extension_types": [ | 325 "extension_types": [ |
326 "extension", "legacy_packaged_app", "hosted_app" | 326 "extension", "legacy_packaged_app", "hosted_app" |
327 ] | 327 ] |
328 }, | 328 }, |
329 { | 329 { |
330 "channel": "stable", | 330 "channel": "stable", |
331 "extension_types": ["platform_app"], | 331 "extension_types": ["platform_app"], |
332 "location": "component" | 332 "location": "component" |
333 } | 333 } |
334 ], | 334 ], |
335 "webview": { | 335 "webview": [ |
Devlin
2017/04/26 01:59:37
If we accept the fact that the signin extension is
msarda
2017/04/26 11:14:35
I think the 2 things are different, so I prefer th
Devlin
2017/04/26 16:02:30
I understand they affect different bits, but my po
Charlie Reis
2017/04/26 20:10:25
I like this proposal-- thanks for elaborating on w
msarda
2017/04/27 12:28:45
Done.
| |
336 "channel": "stable", | 336 { |
337 "extension_types": ["platform_app"], | 337 "channel": "stable", |
338 "min_manifest_version": 2 | 338 "extension_types": [ "platform_app" ], |
339 } | 339 "min_manifest_version": 2 |
340 }, | |
341 { | |
342 "channel": "stable", | |
343 "extension_types": [ "extension" ], | |
344 "whitelist": [ | |
345 "mfffpogegjflfpflabcdkioaeobkgjik" | |
346 ] | |
347 } | |
348 ] | |
340 } | 349 } |
OLD | NEW |