Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: extensions/common/api/_behavior_features.json

Issue 2159103006: Add policy provider that would filter extensions/apps allowed on the (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 switches used to control Extension behaviour, 5 // This features file defines switches used to control Extension behaviour,
6 // typically whitelist configuration. 6 // typically whitelist configuration.
7 // See chrome/common/extensions/api/_features.md to understand this file, as 7 // See chrome/common/extensions/api/_features.md to understand this file, as
8 // well as feature.h, simple_feature.h, and base_feature_provider.h. 8 // well as feature.h, simple_feature.h, and base_feature_provider.h.
9 9
10 { 10 {
(...skipping 28 matching lines...) Expand all
39 "channel": "stable", 39 "channel": "stable",
40 "extension_types": "all", 40 "extension_types": "all",
41 "whitelist": [ 41 "whitelist": [
42 "CBCC42ABED43A4B58FE3810E62AFFA010EB0349F" // https://crbug.com/538252 42 "CBCC42ABED43A4B58FE3810E62AFFA010EB0349F" // https://crbug.com/538252
43 ] 43 ]
44 }, 44 },
45 "allow_usb_devices_permission_interface_class": { 45 "allow_usb_devices_permission_interface_class": {
46 "channel": "dev", 46 "channel": "dev",
47 "extension_types": ["platform_app"], 47 "extension_types": ["platform_app"],
48 "session_types": ["kiosk"] 48 "session_types": ["kiosk"]
49 },
50 "signin_screen": [ {
51 "blacklist": [
52 "9E527CDA9D7C50844E8A5DB964A54A640AE48F98" // Chrome remote desktop
53 ],
54 // Allow developers to test new features.
55 "channel": "dev",
56 "component_extensions_auto_granted": false,
57 "extension_types": ["platform_app"],
58 "location": "policy",
59 "platforms": ["chromeos"]
60 }, {
61 // Strict restrictions for stable channel.
62 // For now only whitelisted apps.
63 "channel": "stable",
64 "component_extensions_auto_granted": false,
65 "extension_types": ["platform_app"],
66 "location": "policy",
67 "platforms": ["chromeos"],
68 "whitelist": [
69 "EC3DE21E048B67319893889529354DFBFA96FD23" // Smart Card Connector
emaxx 2016/11/10 14:44:32 As you started adding real-world apps, please add
Denis Kuznetsov (DE-MUC) 2016/11/11 15:50:17 Done.
70 ]
71 }, {
72 // Explicitly whitelist extensions that should always be available
emaxx 2016/11/10 14:44:32 Can the "location" key be also specified here? The
Denis Kuznetsov (DE-MUC) 2016/11/11 15:50:17 Done.
73 // on a sign-in screen.
74 "channel": "stable",
75 "component_extensions_auto_granted": false,
76 "platforms": ["chromeos"],
77 "whitelist": [
78 "E24F1786D842E91E74C27929B0B3715A4689A473", // Gnubby component extension
79 "6F9E349A0561C78A0D3F41496FE521C5151C7F71", // Gnubby app
80 "8EBDF73405D0B84CEABB8C7513C9B9FA9F1DC2CE", // Genius app (help)
81 "3F50C3A83839D9C76334BCE81CDEC06174F266AF" // Virtual Keyboard
82 ]
49 } 83 }
84 ]
50 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698