OLD | NEW |
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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 | 708 |
709 You can specify the default search provider to be used by setting the
rest of the default search policies. If these are left empty, the user can choos
e the default provider. | 709 You can specify the default search provider to be used by setting the
rest of the default search policies. If these are left empty, the user can choos
e the default provider. |
710 | 710 |
711 If you diable this setting, no search is performed when the user enter
s non-URL text in the omnibox. | 711 If you diable this setting, no search is performed when the user enter
s non-URL text in the omnibox. |
712 | 712 |
713 If you enable or disable this setting, users cannot change or override
this setting in <ph name="PRODUCT_NAME"> | 713 If you enable or disable this setting, users cannot change or override
this setting in <ph name="PRODUCT_NAME"> |
714 $1<ex>Google Chrome</ex> | 714 $1<ex>Google Chrome</ex> |
715 </ph>.''', | 715 </ph>.''', |
716 }, | 716 }, |
717 { | 717 { |
| 718 'name': 'BlockThirdPartyCookies', |
| 719 'type': 'main', |
| 720 'supported_on': ['chrome.*:10-'], |
| 721 'features': {'dynamic_refresh': 1}, |
| 722 'example_value': False, |
| 723 'caption': '''Block third party cookies''', |
| 724 'desc': '''Blocks third party cookies. |
| 725 |
| 726 Enabling this setting prevents cookies from being set by web page elem
ents that are not from the domain that is in the browser's address bar. |
| 727 |
| 728 Disabling this setting allows cookies to be set by web page elements t
hat are not from the domain that is in the browser's address bar and prevents us
ers from changing this setting.''', |
| 729 }, |
| 730 { |
718 'name': 'DefaultSearchProviderName', | 731 'name': 'DefaultSearchProviderName', |
719 'type': 'string', | 732 'type': 'string', |
720 'supported_on': ['chrome.*:8-'], | 733 'supported_on': ['chrome.*:8-'], |
721 'features': {'dynamic_refresh': 1}, | 734 'features': {'dynamic_refresh': 1}, |
722 'example_value': 'My Intranet Search', | 735 'example_value': 'My Intranet Search', |
723 'caption': '''Default search provider name''', | 736 'caption': '''Default search provider name''', |
724 'desc': '''Specifies the name of the default search provider. If left
empty, the host name specified by the search URL will be used.''', | 737 'desc': '''Specifies the name of the default search provider. If left
empty, the host name specified by the search URL will be used.''', |
725 }, | 738 }, |
726 { | 739 { |
727 'name': 'DefaultSearchProviderKeyword', | 740 'name': 'DefaultSearchProviderKeyword', |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1156 { | 1169 { |
1157 'key': '$4', | 1170 'key': '$4', |
1158 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' | 1171 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' |
1159 }, | 1172 }, |
1160 { | 1173 { |
1161 'key': '$5', | 1174 'key': '$5', |
1162 'value': 'http://www.chromium.org/administrators/policy-templates' | 1175 'value': 'http://www.chromium.org/administrators/policy-templates' |
1163 }, | 1176 }, |
1164 ] | 1177 ] |
1165 } | 1178 } |
OLD | NEW |