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

Side by Side Diff: components/policy/resources/policy_templates.json

Issue 2111563002: Device policy for LoginApps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 months 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 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 # templates and documentation. The policy definition list that Chrome sees 130 # templates and documentation. The policy definition list that Chrome sees
131 # will include policies marked with 'future'. If a WIP policy isn't meant to 131 # will include policies marked with 'future'. If a WIP policy isn't meant to
132 # be seen by the policy providers either, the 'supported_on' key should be set 132 # be seen by the policy providers either, the 'supported_on' key should be set
133 # to an empty list. 133 # to an empty list.
134 # 134 #
135 # IDs: 135 # IDs:
136 # Since a Protocol Buffer definition is generated from this file, unique and 136 # Since a Protocol Buffer definition is generated from this file, unique and
137 # persistent IDs for all fields (but not for groups!) are needed. These are 137 # persistent IDs for all fields (but not for groups!) are needed. These are
138 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 138 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
139 # because doing so would break the deployed wire format! 139 # because doing so would break the deployed wire format!
140 # For your editing convenience: highest ID currently used: 334 140 # For your editing convenience: highest ID currently used: 335
141 # 141 #
142 # Placeholders: 142 # Placeholders:
143 # The following placeholder strings are automatically substituted: 143 # The following placeholder strings are automatically substituted:
144 # $1 -> Google Chrome / Chromium 144 # $1 -> Google Chrome / Chromium
145 # $2 -> Google Chrome OS / Chromium OS 145 # $2 -> Google Chrome OS / Chromium OS
146 # $3 -> Google Chrome Frame / Chromium Frame 146 # $3 -> Google Chrome Frame / Chromium Frame
147 # $6 is reserved for doc_writer 147 # $6 is reserved for doc_writer
148 # 148 #
149 # Device Policy: 149 # Device Policy:
150 # An additional flag 'device_only' (optional, defaults to False) indicates 150 # An additional flag 'device_only' (optional, defaults to False) indicates
(...skipping 8372 matching lines...) Expand 10 before | Expand all | Expand 10 after
8523 'id': 328, 8523 'id': 328,
8524 'caption': '''URLs that will be granted access to video capture devices on SAML login pages''', 8524 'caption': '''URLs that will be granted access to video capture devices on SAML login pages''',
8525 'tags': ['website-sharing'], 8525 'tags': ['website-sharing'],
8526 'desc': '''Patterns in this list will be matched against the security 8526 'desc': '''Patterns in this list will be matched against the security
8527 origin of the requesting URL. If a match is found, access to video 8527 origin of the requesting URL. If a match is found, access to video
8528 capture devices will be granted on SAML login pages. If no match is 8528 capture devices will be granted on SAML login pages. If no match is
8529 found, access will be automatically denied. Wildcard patterns are not 8529 found, access will be automatically denied. Wildcard patterns are not
8530 allowed.''' 8530 allowed.'''
8531 }, 8531 },
8532 { 8532 {
8533 'name': 'LoginApps',
8534 'type': 'list',
8535 'schema': {
8536 'type': 'array',
8537 'items': { 'type': 'string' },
8538 },
8539 'supported_on': ['chrome_os:54-'],
8540 'device_only': True,
8541 'features': {
8542 'dynamic_refresh': True,
8543 },
8544 'example_value': ['gbchcmhmhahfdphkhkmpfmihenigjmpp;https://clients2.googl e.com/service/update2/crx'],
8545 'id': 335,
8546 'caption': '''Configure the list of installed apps on the login screen''',
8547 'tags': ['full-admin-access'],
8548 'desc': '''
8549 Specifies a list of apps that are installed silently on the login screen,
8550 without user interaction, and which cannot be uninstalled.
8551 All permissions requested by the apps are granted
8552 implicitly, without user interaction, including any additional
8553 permissions requested by future versions of the app.
8554
8555 If an app that previously had been force-installed is removed from
8556 this list, it is automatically uninstalled by <ph name="PRODUCT_NAME">$1<e x>Google
8557 Chrome</ex></ph>.
8558
8559 Each list item of the policy is a string that contains an extension ID
8560 and an "update" URL separated by a semicolon (<ph
8561 name="SEMICOLON">;</ph>). The extension ID is the 32-letter string
8562 found e.g. on <ph
8563 name="CHROME_EXTENSIONS_LINK">chrome://extensions</ph> when in
8564 developer mode. The "update" URL should point to an Update Manifest
8565 XML document as described at <ph
8566 name="LINK_TO_EXTENSION_DOC1">https://developer.chrome.com/extensions/auto update</ph>. Note
8567 that the "update" URL set in this policy is only used for the initial
8568 installation; subsequent updates of the extension employ the update
8569 URL indicated in the extension's manifest.
8570
8571 For example, <ph
8572 name="EXTENSION_POLICY_EXAMPLE">gbchcmhmhahfdphkhkmpfmihenigjmpp;https://c lients2.google.com/service/update2/crx</ph>
8573 installs the <ph name="EXTENSION_POLICY_EXAMPLE_EXTENSION_NAME">Chrome
8574 Remote Desktop</ph> app from the standard Chrome Web Store "update"
8575 URL. For more information about hosting extensions, see: <ph
8576 name="LINK_TO_EXTENSION_DOC2">https://developer.chrome.com/extensions/host ing</ph>.''',
8577 },
8578 {
8533 'name': 'AllowScreenLock', 8579 'name': 'AllowScreenLock',
8534 'caption': '''Permit locking the screen''', 8580 'caption': '''Permit locking the screen''',
8535 'desc': '''Permit locking the screen. 8581 'desc': '''Permit locking the screen.
8536 8582
8537 If this policy is set to false, users will not be able to lock the screen (only signing out from the user session will be possible). If this setting is se t to true or not set, users who authenticated with a password can lock the scree n.''', 8583 If this policy is set to false, users will not be able to lock the screen (only signing out from the user session will be possible). If this setting is se t to true or not set, users who authenticated with a password can lock the scree n.''',
8538 'type': 'main', 8584 'type': 'main',
8539 'schema': { 'type': 'boolean' }, 8585 'schema': { 'type': 'boolean' },
8540 'supported_on': ['chrome_os:52-'], 8586 'supported_on': ['chrome_os:52-'],
8541 'features': { 8587 'features': {
8542 'dynamic_refresh': True, 8588 'dynamic_refresh': True,
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
8785 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 8831 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
8786 'text': 'Default Settings (users can override)', 8832 'text': 'Default Settings (users can override)',
8787 }, 8833 },
8788 'doc_complex_policies_on_windows': { 8834 'doc_complex_policies_on_windows': {
8789 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 8835 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
8790 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '', 8836 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '',
8791 }, 8837 },
8792 }, 8838 },
8793 'placeholders': [], 8839 'placeholders': [],
8794 } 8840 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698