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 |
11 # pair where the value has a given type. Chrome looks up the values using the | 11 # pair where the value has a given type. Chrome looks up the values using the |
12 # names of the policies. In the user interface where the values can be set, | 12 # names of the policies. In the user interface where the values can be set, |
13 # related policies might appear together in policy groups. The grouping is not | 13 # related policies might appear together in policy groups. The grouping is not |
14 # visible to Chrome. | 14 # visible to Chrome. |
15 # | 15 # |
16 # This file contains a list of policies and groups. Each group contains a list | 16 # This file contains a list of policies and groups. Each group contains a list |
17 # of policies under the key 'policies'. All the policies and groups must have | 17 # of policies under the key 'policies'. All the policies and groups must have |
18 # unique names. Group names are not exposed to Chrome at all. | 18 # unique names. Group names are not exposed to Chrome at all. |
19 # | 19 # |
20 # Each policy has a type. The currently implemented types: | 20 # Each policy has a type. The currently implemented types: |
21 # 'group': - not a real policy, contains a list of policies | 21 # 'group': - not a real policy, contains a list of policies |
22 # NOTE: Currently nesting groups inside other groups is not supported. | 22 # NOTE: Currently nesting groups inside other groups is not supported. |
23 # 'string' - a string value | 23 # 'string' - a string value |
24 # 'int' - an integer value | 24 # 'int' - an integer value |
25 # 'int-enum' - the user can select an integer value from a collection of | 25 # 'int-enum' - the user can select an integer value from a collection of |
26 # items | 26 # items |
27 # 'string-enum' - the user can select a string value from a collection of | 27 # 'string-enum' - the user can select a string value from a collection of |
28 # items | 28 # items |
29 # 'main' - a boolean value | 29 # 'main' - a boolean value |
30 # 'list' - a list of string values | 30 # 'list' - a list of string values |
31 # | 31 # |
32 # Policy group descriptions, policy captions and similar texts are localized | 32 # Policy group descriptions, policy captions and similar texts are localized |
33 # strings taken from the <message> nodes of the .grd file. Their name | 33 # strings taken from the <message> nodes of the .grd file. Their name |
34 # attributes are generated from the JSON keys. | 34 # attributes are generated from the JSON keys. |
35 # Each item (policy or group) may have the following messages: | 35 # Each item (policy or group) may have the following messages: |
36 # - description: | 36 # - description: |
37 # Describes the item it applies to. | 37 # Describes the item it applies to. |
(...skipping 15 matching lines...) Expand all Loading... |
53 # e.g. the name of the caption of policy HomepageLocation: | 53 # e.g. the name of the caption of policy HomepageLocation: |
54 # IDS_POLICY_HOMEPAGELOCATION_CAPTION | 54 # IDS_POLICY_HOMEPAGELOCATION_CAPTION |
55 # or other messages of the policy HomepageLocation: | 55 # or other messages of the policy HomepageLocation: |
56 # IDS_POLICY_HOMEPAGELOCATION_LABEL | 56 # IDS_POLICY_HOMEPAGELOCATION_LABEL |
57 # IDS_POLICY_HOMEPAGELOCATION_DESC | 57 # IDS_POLICY_HOMEPAGELOCATION_DESC |
58 # -For enum items: | 58 # -For enum items: |
59 # IDS_POLICY_ENUM_<NAME OF THE ITEM> | 59 # IDS_POLICY_ENUM_<NAME OF THE ITEM> |
60 # e.g. the name of the caption of ProxyServerDisabled: | 60 # e.g. the name of the caption of ProxyServerDisabled: |
61 # IDS_POLICY_ENUM_PROXYSERVERDISABLED_CAPTION | 61 # IDS_POLICY_ENUM_PROXYSERVERDISABLED_CAPTION |
62 # | 62 # |
63 # Annotations: | |
64 # Each policy has metadata under the key 'annotations'. | |
65 # These values are only used for the generated documentation. | |
66 # | |
67 # Products and versions: | 63 # Products and versions: |
68 # Each policy has the list of products and version numbers where it is | 64 # Each policy has the list of products and version numbers where it is |
69 # supported under the key 'supported_on'. Each item of this list has the | 65 # supported under the key 'supported_on'. Each item of this list has the |
70 # form of 'product:since_version-until_version', which means that support | 66 # form of 'product:since_version-until_version', which means that support |
71 # for the policy in 'product' was introduced in 'since_version' and removed | 67 # for the policy in 'product' was introduced in 'since_version' and removed |
72 # after 'until_version'. Product names may contain a suffix specifying a | 68 # after 'until_version'. Product names may contain a suffix specifying a |
73 # platform name, e.g.: 'chrome.win' is read as 'Chrome on Windows'. Version | 69 # platform name, e.g.: 'chrome.win' is read as 'Chrome on Windows'. Version |
74 # numbers can be any string that does not contain ':' or '-' characters. | 70 # numbers can be any string that does not contain ':' or '-' characters. |
75 # | 71 # |
76 # Currently supported product names: | 72 # Currently supported product names: |
77 # 'chrome_frame', 'chrome_os' | 73 # 'chrome_frame', 'chrome_os' |
78 # 'chrome.win', 'chrome.linux', 'chrome.mac', 'chrome.*' | 74 # 'chrome.win', 'chrome.linux', 'chrome.mac', 'chrome.*' |
79 # For example if 'chrome.*:5-10' is specified for a policy, then it should | 75 # For example if 'chrome.*:5-10' is specified for a policy, then it should |
80 # be read as: | 76 # be read as: |
81 # 'chrome.linux:5-10,chrome.mac:5-10,chrome.win:5-10' | 77 # 'chrome.linux:5-10,chrome.mac:5-10,chrome.win:5-10' |
82 # The product name also affects in which templates will the policy be included
. | 78 # The product name also affects in which templates will the policy be included
. |
83 # chrome.*, chrome.win, chrome_frame -> ADM,ADMX,ADML,doc | 79 # chrome.*, chrome.win, chrome_frame -> ADM,ADMX,ADML,doc |
84 # chrome.*, chrome.linux -> JSON,doc | 80 # chrome.*, chrome.linux -> JSON,doc |
85 # chrome.*, chrome.mac -> plist, plist_strings,doc | 81 # chrome.*, chrome.mac -> plist, plist_strings,doc |
86 # everything else -> doc | 82 # everything else -> doc |
87 # | 83 # |
| 84 # Annotations: |
| 85 # Additional information is specified under keys 'features' and |
| 86 # 'example_value'. These are used in the generated documentation and example |
| 87 # policy configuration files. |
| 88 # |
88 'policy_definitions': [ | 89 'policy_definitions': [ |
89 { | 90 { |
90 'name': 'Homepage', | 91 'name': 'Homepage', |
91 'type': 'group', | 92 'type': 'group', |
92 'caption': '''Home page''', | 93 'caption': '''Home page''', |
93 'desc': '''Configure the default home page in <ph name="PRODUCT_NAME">$1<e
x>Google Chrome</ex></ph> and prevents users from changing it. | 94 'desc': '''Configure the default home page in <ph name="PRODUCT_NAME">$1<e
x>Google Chrome</ex></ph> and prevents users from changing it. |
94 | 95 |
95 The user's home page settings are only completely locked down, if you eith
er select the home page to be the new tab page, or set it to be a URL and specif
y a home page URL. If you don't specify the home page URL, then the user is stil
l able to set the home page to the new tab page by specifying 'chrome://newtab'.
''', | 96 The user's home page settings are only completely locked down, if you eith
er select the home page to be the new tab page, or set it to be a URL and specif
y a home page URL. If you don't specify the home page URL, then the user is stil
l able to set the home page to the new tab page by specifying 'chrome://newtab'.
''', |
96 'policies': [ | 97 'policies': [ |
97 { | 98 { |
98 'name': 'HomepageLocation', | 99 'name': 'HomepageLocation', |
99 'type': 'string', | 100 'type': 'string', |
100 'supported_on': ['chrome.*:8-'], | 101 'supported_on': ['chrome.*:8-'], |
101 'annotations': { | 102 'features': {'dynamic_refresh': 1}, |
102 'features': {'dynamic_refresh': 1}, | 103 'example_value': 'http://chromium.org', |
103 'example_value': 'http://chromium.org', | |
104 }, | |
105 'caption': '''Configure the home page URL''', | 104 'caption': '''Configure the home page URL''', |
106 'desc': '''Configures the default home page URL in <ph name="PRODUCT_N
AME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it. | 105 'desc': '''Configures the default home page URL in <ph name="PRODUCT_N
AME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it. |
107 | 106 |
108 The home page type can either be set to a URL you specify here or set to t
he New Tab Page. | 107 The home page type can either be set to a URL you specify here or set
to the New Tab Page. |
109 | 108 |
110 If you select the New Tab Page, then this policy is ignored. | 109 If you select the New Tab Page, then this policy is ignored. |
111 | 110 |
112 If you enable this setting, users cannot change their home page URL in <ph
name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>, but they can still can choos
e the New Tab Page as their home page.''', | 111 If you enable this setting, users cannot change their home page URL in
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>, but they can still can c
hoose the New Tab Page as their home page.''', |
113 'label': '''Home page URL''', | 112 'label': '''Home page URL''', |
114 }, | 113 }, |
115 { | 114 { |
116 'name': 'HomepageIsNewTabPage', | 115 'name': 'HomepageIsNewTabPage', |
117 'type': 'main', | 116 'type': 'main', |
118 'supported_on': ['chrome.*:8-'], | 117 'supported_on': ['chrome.*:8-'], |
119 'annotations': { | 118 'features': {'dynamic_refresh': 1}, |
120 'features': {'dynamic_refresh': 1}, | 119 'example_value': True, |
121 'example_value': True, | |
122 }, | |
123 'caption': '''Use New Tab Page as homepage''', | 120 'caption': '''Use New Tab Page as homepage''', |
124 'desc': '''Configures the type of the default home page in <ph name="P
RODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing home
page preferences. The home page can either be set to a URL you specify or set t
o the New Tab Page. | 121 'desc': '''Configures the type of the default home page in <ph name="P
RODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing home
page preferences. The home page can either be set to a URL you specify or set t
o the New Tab Page. |
125 | 122 |
126 If you enable this setting, always the New Tab Page is used for the home p
age, and the home page URL location is ignored. | 123 If you enable this setting, always the New Tab Page is used for the ho
me page, and the home page URL location is ignored. |
127 | 124 |
128 If you disable this setting, the user's homepage will never be the New Tab
Page, unless its URL is set to 'chrome://newtab'. | 125 If you disable this setting, the user's homepage will never be the New
Tab Page, unless its URL is set to 'chrome://newtab'. |
129 | 126 |
130 If you enable or disable this setting, users cannot change their homepage
type in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 127 If you enable or disable this setting, users cannot change their homep
age type in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
131 }, | 128 }, |
132 ], | 129 ], |
133 }, | 130 }, |
134 { | 131 { |
135 'name': 'ApplicationLocaleValue', | 132 'name': 'ApplicationLocaleValue', |
136 'type': 'string', | 133 'type': 'string', |
137 'supported_on': ['chrome.win:8-'], | 134 'supported_on': ['chrome.win:8-'], |
138 'annotations': { | 135 'features': {'dynamic_refresh': 0}, |
139 'features': {'dynamic_refresh': 0}, | 136 'example_value': 'en', |
140 'example_value': 'en', | |
141 }, | |
142 'caption': '''Application locale''', | 137 'caption': '''Application locale''', |
143 'desc': '''Configures the application locale in <ph name="PRODUCT_NAME">$1
<ex>Google Chrome</ex></ph> and prevents users from changing the locale. | 138 'desc': '''Configures the application locale in <ph name="PRODUCT_NAME">$1
<ex>Google Chrome</ex></ph> and prevents users from changing the locale. |
144 | 139 |
145 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> uses the specified locale. If the configured locale is not supported, 'e
n-US' is used instead. | 140 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> uses the specified locale. If the configured locale is not supported, 'e
n-US' is used instead. |
146 | 141 |
147 If this setting is disabled or not configured, <ph name="PRODUCT_NAME">$1<
ex>Google Chrome</ex></ph> uses either the user-specified preferred locale (if c
onfigured), the system locale or the fallback locale 'en-US'.''', | 142 If this setting is disabled or not configured, <ph name="PRODUCT_NAME">$1<
ex>Google Chrome</ex></ph> uses either the user-specified preferred locale (if c
onfigured), the system locale or the fallback locale 'en-US'.''', |
148 'label': '''Application locale''', | 143 'label': '''Application locale''', |
149 }, | 144 }, |
150 { | 145 { |
151 'name': 'AlternateErrorPagesEnabled', | 146 'name': 'AlternateErrorPagesEnabled', |
152 'type': 'main', | 147 'type': 'main', |
153 'supported_on': ['chrome.*:8-'], | 148 'supported_on': ['chrome.*:8-'], |
154 'annotations': { | 149 'features': {'dynamic_refresh': 1}, |
155 'features': {'dynamic_refresh': 1}, | 150 'example_value': True, |
156 'example_value': True, | |
157 }, | |
158 'caption': '''Enable alternate error pages''', | 151 'caption': '''Enable alternate error pages''', |
159 'desc': '''Enables the use of alternate error pages that are built into <p
h name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> (such as 'page not found') a
nd prevents users from changing this setting. | 152 'desc': '''Enables the use of alternate error pages that are built into <p
h name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> (such as 'page not found') a
nd prevents users from changing this setting. |
160 | 153 |
161 If you enable this setting, alternate error pages are used. | 154 If you enable this setting, alternate error pages are used. |
162 | 155 |
163 If you disable this setting, alternate error pages are never used. | 156 If you disable this setting, alternate error pages are never used. |
164 | 157 |
165 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 158 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
166 }, | 159 }, |
167 { | 160 { |
168 'name': 'SearchSuggestEnabled', | 161 'name': 'SearchSuggestEnabled', |
169 'type': 'main', | 162 'type': 'main', |
170 'supported_on': ['chrome.*:8-'], | 163 'supported_on': ['chrome.*:8-'], |
171 'annotations': { | 164 'features': {'dynamic_refresh': 1}, |
172 'features': {'dynamic_refresh': 1}, | 165 'example_value': True, |
173 'example_value': True, | |
174 }, | |
175 'caption': '''Enable search suggestions''', | 166 'caption': '''Enable search suggestions''', |
176 'desc': '''Enables search suggestions in <ph name="PRODUCT_NAME">$1<ex>Goo
gle Chrome</ex></ph>'s Omnibox and prevents users from changing this setting. | 167 'desc': '''Enables search suggestions in <ph name="PRODUCT_NAME">$1<ex>Goo
gle Chrome</ex></ph>'s Omnibox and prevents users from changing this setting. |
177 | 168 |
178 If you enable this setting, search suggestions are used. | 169 If you enable this setting, search suggestions are used. |
179 | 170 |
180 If you disable this setting, search suggestions are never used. | 171 If you disable this setting, search suggestions are never used. |
181 | 172 |
182 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 173 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
183 }, | 174 }, |
184 { | 175 { |
185 'name': 'DnsPrefetchingEnabled', | 176 'name': 'DnsPrefetchingEnabled', |
186 'type': 'main', | 177 'type': 'main', |
187 'supported_on': ['chrome.*:8-'], | 178 'supported_on': ['chrome.*:8-'], |
188 'annotations': { | 179 'features': {'dynamic_refresh': 1}, |
189 'features': {'dynamic_refresh': 1}, | 180 'example_value': True, |
190 'example_value': True, | |
191 }, | |
192 'caption': '''Enable DNS prefetching''', | 181 'caption': '''Enable DNS prefetching''', |
193 'desc': '''Enables DNS prefetching in <ph name="PRODUCT_NAME">$1<ex>Google
Chrome</ex></ph> and prevents users from changing this setting. | 182 'desc': '''Enables DNS prefetching in <ph name="PRODUCT_NAME">$1<ex>Google
Chrome</ex></ph> and prevents users from changing this setting. |
194 | 183 |
195 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 184 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
196 }, | 185 }, |
197 { | 186 { |
198 'name': 'DisableSpdy', | 187 'name': 'DisableSpdy', |
199 'type': 'main', | 188 'type': 'main', |
200 'supported_on': ['chrome.*:8-'], | 189 'supported_on': ['chrome.*:8-'], |
201 'annotations': { | 190 'features': {'dynamic_refresh': 1}, |
202 'features': {'dynamic_refresh': 1}, | 191 'example_value': True, |
203 'example_value': True, | |
204 }, | |
205 'caption': '''Disable SPDY protocol''', | 192 'caption': '''Disable SPDY protocol''', |
206 'desc': '''Disables use of the SPDY protocol in <ph name="PRODUCT_NAME">$1
<ex>Google Chrome</ex></ph>.''', | 193 'desc': '''Disables use of the SPDY protocol in <ph name="PRODUCT_NAME">$1
<ex>Google Chrome</ex></ph>.''', |
207 }, | 194 }, |
208 { | 195 { |
209 'name': 'JavascriptEnabled', | 196 'name': 'JavascriptEnabled', |
210 'type': 'main', | 197 'type': 'main', |
211 'supported_on': ['chrome.*:8-'], | 198 'supported_on': ['chrome.*:8-'], |
212 'annotations': { | 199 'features': {'dynamic_refresh': 0}, |
213 'features': {'dynamic_refresh': 0}, | 200 'example_value': True, |
214 'example_value': True, | |
215 }, | |
216 'caption': '''Enable JavaScript''', | 201 'caption': '''Enable JavaScript''', |
217 'desc': '''Enables JavaScript in <ph name="PRODUCT_NAME">$1<ex>Google Chro
me</ex></ph> and prevents users from changing this setting. | 202 'desc': '''Enables JavaScript in <ph name="PRODUCT_NAME">$1<ex>Google Chro
me</ex></ph> and prevents users from changing this setting. |
218 | 203 |
219 If this setting is enabled or not configured, web pages can use JavaScript
. | 204 If this setting is enabled or not configured, web pages can use JavaScript
. |
220 | 205 |
221 If this setting is disabled, web pages cannot use JavaScript.''', | 206 If this setting is disabled, web pages cannot use JavaScript.''', |
222 }, | 207 }, |
223 { | 208 { |
224 'name': 'SavingBrowserHistoryDisabled', | 209 'name': 'SavingBrowserHistoryDisabled', |
225 'type': 'main', | 210 'type': 'main', |
226 'supported_on': ['chrome.*:8-'], | 211 'supported_on': ['chrome.*:8-'], |
227 'annotations': { | 212 'features': {'dynamic_refresh': 1}, |
228 'features': {'dynamic_refresh': 1}, | 213 'example_value': True, |
229 'example_value': True, | |
230 }, | |
231 'caption': '''Disable saving browser history''', | 214 'caption': '''Disable saving browser history''', |
232 'desc': '''Disables saving browser history in <ph name="PRODUCT_NAME">$1<e
x>Google Chrome</ex></ph> and prevents users from changing this setting. | 215 'desc': '''Disables saving browser history in <ph name="PRODUCT_NAME">$1<e
x>Google Chrome</ex></ph> and prevents users from changing this setting. |
233 | 216 |
234 If this setting is enabled, browsing history is not saved. | 217 If this setting is enabled, browsing history is not saved. |
235 | 218 |
236 If this setting is disabled or not configured, browsing history is saved.'
'', | 219 If this setting is disabled or not configured, browsing history is saved.'
'', |
237 }, | 220 }, |
238 { | 221 { |
239 'name': 'PrintingEnabled', | 222 'name': 'PrintingEnabled', |
240 'type': 'main', | 223 'type': 'main', |
241 'supported_on': ['chrome.*:8-'], | 224 'supported_on': ['chrome.*:8-'], |
242 'annotations': { | 225 'features': {'dynamic_refresh': 1}, |
243 'features': {'dynamic_refresh': 1}, | 226 'example_value': True, |
244 'example_value': True, | |
245 }, | |
246 'caption': '''Enable printing''', | 227 'caption': '''Enable printing''', |
247 'desc': '''Enables printing in <ph name="PRODUCT_NAME">$1<ex>Google Chrome
</ex></ph> and prevents users from changing this setting. | 228 'desc': '''Enables printing in <ph name="PRODUCT_NAME">$1<ex>Google Chrome
</ex></ph> and prevents users from changing this setting. |
248 | 229 |
249 If this setting is enabled or not configured, users can print. | 230 If this setting is enabled or not configured, users can print. |
250 | 231 |
251 If this setting is disabled, users cannot print from <ph name="PRODUCT_NAM
E">$1<ex>Google Chrome</ex></ph>. Printing is disabled in the wrench menu, exten
sions, JavaScript applications, etc. It is still possible to print from plugins
that bypass <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> while printing
. For example certain Flash applications has the print option in their context m
enu, and that will not be disabled.''', | 232 If this setting is disabled, users cannot print from <ph name="PRODUCT_NAM
E">$1<ex>Google Chrome</ex></ph>. Printing is disabled in the wrench menu, exten
sions, JavaScript applications, etc. It is still possible to print from plugins
that bypass <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> while printing
. For example certain Flash applications has the print option in their context m
enu, and that will not be disabled.''', |
252 }, | 233 }, |
253 { | 234 { |
254 'name': 'SafeBrowsingEnabled', | 235 'name': 'SafeBrowsingEnabled', |
255 'type': 'main', | 236 'type': 'main', |
256 'supported_on': ['chrome.*:8-'], | 237 'supported_on': ['chrome.*:8-'], |
257 'annotations': { | 238 'features': {'dynamic_refresh': 0}, |
258 'features': {'dynamic_refresh': 0}, | 239 'example_value': True, |
259 'example_value': True, | |
260 }, | |
261 'caption': '''Enable Safe Browsing''', | 240 'caption': '''Enable Safe Browsing''', |
262 'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s
Safe Browsing feature and prevents users from changing this setting. | 241 'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s
Safe Browsing feature and prevents users from changing this setting. |
263 | 242 |
264 If you enable this setting, Safe Browsing is always active. | 243 If you enable this setting, Safe Browsing is always active. |
265 | 244 |
266 If you disable this setting, Safe Browsing is never active. | 245 If you disable this setting, Safe Browsing is never active. |
267 | 246 |
268 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 247 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
269 }, | 248 }, |
270 { | 249 { |
271 'name': 'MetricsReportingEnabled', | 250 'name': 'MetricsReportingEnabled', |
272 'type': 'main', | 251 'type': 'main', |
273 'supported_on': ['chrome.*:8-'], | 252 'supported_on': ['chrome.*:8-'], |
274 'annotations': { | 253 'features': {'dynamic_refresh': 0}, |
275 'features': {'dynamic_refresh': 0}, | 254 'example_value': True, |
276 'example_value': True, | |
277 }, | |
278 'caption': '''Enable reporting of usage and crash-related data''', | 255 'caption': '''Enable reporting of usage and crash-related data''', |
279 'desc': '''Enables anonymous reporting of usage and crash-related data abo
ut <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to Google and prevents
users from changing this setting. | 256 'desc': '''Enables anonymous reporting of usage and crash-related data abo
ut <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to Google and prevents
users from changing this setting. |
280 | 257 |
281 If you enable this setting, anonymous reporting of usage and crash-related
data is sent to Google. | 258 If you enable this setting, anonymous reporting of usage and crash-related
data is sent to Google. |
282 | 259 |
283 If you disable this setting, anonymous reporting of usage and crash-relate
d data is never sent to Google. | 260 If you disable this setting, anonymous reporting of usage and crash-relate
d data is never sent to Google. |
284 | 261 |
285 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 262 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
286 }, | 263 }, |
287 { | 264 { |
288 'name': 'PasswordManager', | 265 'name': 'PasswordManager', |
289 'type': 'group', | 266 'type': 'group', |
290 'caption': '''Password manager''', | 267 'caption': '''Password manager''', |
291 'desc': '''Configures the password manager. If the password manager is ena
bled, then you can choose to enable or disable whether the user may show stored
passwords in clear text.''', | 268 'desc': '''Configures the password manager. If the password manager is ena
bled, then you can choose to enable or disable whether the user may show stored
passwords in clear text.''', |
292 'policies': [ | 269 'policies': [ |
293 { | 270 { |
294 'name': 'PasswordManagerEnabled', | 271 'name': 'PasswordManagerEnabled', |
295 'type': 'main', | 272 'type': 'main', |
296 'supported_on': ['chrome.*:8-'], | 273 'supported_on': ['chrome.*:8-'], |
297 'annotations': { | 274 'features': {'dynamic_refresh': 1}, |
298 'features': {'dynamic_refresh': 1}, | 275 'example_value': True, |
299 'example_value': True, | |
300 }, | |
301 'caption': '''Enable the password manager''', | 276 'caption': '''Enable the password manager''', |
302 'desc': '''Enables saving passwords and using saved passwords in <ph n
ame="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. | 277 'desc': '''Enables saving passwords and using saved passwords in <ph n
ame="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. |
303 | 278 |
304 If you enable this setting, users can have <ph name="PRODUCT_NAME">$1<ex>G
oogle Chrome</ex></ph> memorize passwords and provide them automatically the nex
t time they log in to a site. | 279 If you enable this setting, users can have <ph name="PRODUCT_NAME">$1<
ex>Google Chrome</ex></ph> memorize passwords and provide them automatically the
next time they log in to a site. |
305 | 280 |
306 If you disable this setting, users are not able to save passwords or use a
lready saved passwords. | 281 If you disable this setting, users are not able to save passwords or u
se already saved passwords. |
307 | 282 |
308 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 283 If you enable or disable this setting, users cannot change or override
this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
309 }, | 284 }, |
310 { | 285 { |
311 'name': 'PasswordManagerAllowShowPasswords', | 286 'name': 'PasswordManagerAllowShowPasswords', |
312 'type': 'main', | 287 'type': 'main', |
313 'supported_on': ['chrome.*:8-'], | 288 'supported_on': ['chrome.*:8-'], |
314 'annotations': { | 289 'features': {'dynamic_refresh': 1}, |
315 'features': {'dynamic_refresh': 1}, | 290 'example_value': False, |
316 'example_value': False, | |
317 }, | |
318 'caption': '''Allow users to show passwords in Password Manager''', | 291 'caption': '''Allow users to show passwords in Password Manager''', |
319 'desc': '''Controls whether the user may show passwords in clear text
in the password manager. | 292 'desc': '''Controls whether the user may show passwords in clear text
in the password manager. |
320 | 293 |
321 If you disable this setting, the password manager does not allow showing s
tored passwords in clear text in the password manager window. | 294 If you disable this setting, the password manager does not allow showi
ng stored passwords in clear text in the password manager window. |
322 | 295 |
323 If you enable or do not configure this setting, users can view their passw
ords in clear text in the password manager.''', | 296 If you enable or do not configure this setting, users can view their p
asswords in clear text in the password manager.''', |
324 }, | 297 }, |
325 ], | 298 ], |
326 }, | 299 }, |
327 { | 300 { |
328 'name': 'AutoFillEnabled', | 301 'name': 'AutoFillEnabled', |
329 'type': 'main', | 302 'type': 'main', |
330 'supported_on': ['chrome.*:8-'], | 303 'supported_on': ['chrome.*:8-'], |
331 'annotations': { | 304 'features': {'dynamic_refresh': 1}, |
332 'features': {'dynamic_refresh': 1}, | 305 'example_value': False, |
333 'example_value': False, | |
334 }, | |
335 'caption': '''Enable AutoFill''', | 306 'caption': '''Enable AutoFill''', |
336 'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s
AutoFill feature and allows users to auto complete web forms using previously s
tored information such as address or credit card information. | 307 'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s
AutoFill feature and allows users to auto complete web forms using previously s
tored information such as address or credit card information. |
337 | 308 |
338 If you disable this setting, AutoFill will be inaccessible to users. | 309 If you disable this setting, AutoFill will be inaccessible to users. |
339 | 310 |
340 If you enable this setting or do not configure a value, AutoFill will remain
under the control of the user. This will allow them to configure AutoFill profi
les and to switch AutoFill on or off at their own discretion.''', | 311 If you enable this setting or do not configure a value, AutoFill will rema
in under the control of the user. This will allow them to configure AutoFill pro
files and to switch AutoFill on or off at their own discretion.''', |
341 }, | 312 }, |
342 { | 313 { |
343 'name': 'DisabledPlugins', | 314 'name': 'DisabledPlugins', |
344 'type': 'list', | 315 'type': 'list', |
345 'supported_on': ['chrome.*:8-'], | 316 'supported_on': ['chrome.*:8-'], |
346 'annotations': { | 317 'features': {'dynamic_refresh': 1}, |
347 'features': {'dynamic_refresh': 1}, | 318 'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'], |
348 'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'], | |
349 }, | |
350 'caption': '''Specify a list of disabled plugins''', | 319 'caption': '''Specify a list of disabled plugins''', |
351 'desc': '''Specifies a list of plugins that are disabled in <ph name="PROD
UCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this se
tting. | 320 'desc': '''Specifies a list of plugins that are disabled in <ph name="PROD
UCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this se
tting. |
352 | 321 |
353 The wildcard characters '*' and '?' can be used to match sequences of arbi
trary characters. '*' matches an arbitrary number of characters while '?' specif
ies an optional single character, i.e. matches zero or one characters. The escap
e character is '\\', so to match actual '*', '?', or '\\' characters, you can pu
t a '\\' in front of them. | 322 The wildcard characters '*' and '?' can be used to match sequences of arbi
trary characters. '*' matches an arbitrary number of characters while '?' specif
ies an optional single character, i.e. matches zero or one characters. The escap
e character is '\\', so to match actual '*', '?', or '\\' characters, you can pu
t a '\\' in front of them. |
354 | 323 |
355 If you enable this setting, the specified list of plugins is never used in
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. The plugins are marked a
s disabled in 'about:plugins' and users cannot enable them.''', | 324 If you enable this setting, the specified list of plugins is never used in
<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. The plugins are marked a
s disabled in 'about:plugins' and users cannot enable them.''', |
356 'label': '''List of disabled plugins''', | 325 'label': '''List of disabled plugins''', |
357 }, | 326 }, |
358 { | 327 { |
359 'name': 'SyncDisabled', | 328 'name': 'SyncDisabled', |
360 'type': 'main', | 329 'type': 'main', |
361 'supported_on': ['chrome.*:8-'], | 330 'supported_on': ['chrome.*:8-'], |
362 'annotations': { | 331 'features': {'dynamic_refresh': 1}, |
363 'features': {'dynamic_refresh': 1}, | 332 'example_value': True, |
364 'example_value': True, | |
365 }, | |
366 'caption': '''Disable synchronization of data with Google''', | 333 'caption': '''Disable synchronization of data with Google''', |
367 'desc': '''Disables data synchronization in <ph name="PRODUCT_NAME">$1<ex>
Google Chrome</ex></ph> using Google-hosted synchronization services and prevent
s users from changing this setting. | 334 'desc': '''Disables data synchronization in <ph name="PRODUCT_NAME">$1<ex>
Google Chrome</ex></ph> using Google-hosted synchronization services and prevent
s users from changing this setting. |
368 | 335 |
369 If you enable this setting, users cannot change or override this setting i
n <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 336 If you enable this setting, users cannot change or override this setting i
n <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
370 }, | 337 }, |
371 { | 338 { |
372 'name': 'Proxy', | 339 'name': 'Proxy', |
373 'type': 'group', | 340 'type': 'group', |
374 'caption': '''Proxy server''', | 341 'caption': '''Proxy server''', |
375 'desc': '''Allows you to specify the proxy server used by <ph name="PRODUC
T_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy set
tings. | 342 'desc': '''Allows you to specify the proxy server used by <ph name="PRODUC
T_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy set
tings. |
376 | 343 |
377 If you choose to never use a proxy server and always connect directly, all
other options are ignored. | 344 If you choose to never use a proxy server and always connect directly, all
other options are ignored. |
378 | 345 |
379 If you choose to auto detect the proxy server, all other options are ignor
ed. | 346 If you choose to auto detect the proxy server, all other options are ignor
ed. |
380 | 347 |
381 For detailed examples, visit: | 348 For detailed examples, visit: |
382 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/design-
documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph> | 349 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/design-
documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph> |
383 | 350 |
384 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> ignores all proxy-related options specified from the command line.''', | 351 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> ignores all proxy-related options specified from the command line.''', |
385 'policies': [ | 352 'policies': [ |
386 { | 353 { |
387 'name': 'ProxyMode', | 354 'name': 'ProxyMode', |
388 'type': 'string-enum', | 355 'type': 'string-enum', |
389 'caption': '''Choose how to specify proxy server settings''', | |
390 'desc': '''Allows you to specify the proxy server used by <ph name="PR
ODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy
settings. | |
391 | |
392 If you choose to never use a proxy server and always connect directly, all
other options are ignored. | |
393 | |
394 If you choose to use system proxy settings or auto detect the proxy server
, all other options are ignored. | |
395 | |
396 If you choose fixed server proxy mode, you can specify further options in
'Address or URL of proxy server' and 'Comma-separated list of proxy bypass rules
'. | |
397 | |
398 If you choose to use a .pac proxy script, you must specify the URL to the
script in 'URL to a proxy .pac file'. | |
399 | |
400 For detailed examples, visit: | |
401 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/design-
documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph> | |
402 | |
403 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> ignores all proxy-related options specified from the command line.''', | |
404 'items': [ | 356 'items': [ |
405 { | 357 { |
406 'name': 'ProxyDisabled', | 358 'name': 'ProxyDisabled', |
407 'value': 'direct', | 359 'value': 'direct', |
408 'caption': '''Never use a proxy''', | 360 'caption': '''Never use a proxy''' |
409 }, | 361 }, |
410 { | 362 { |
411 'name': 'ProxyAutoDetect', | 363 'name': 'ProxyAutoDetect', |
412 'value': 'auto_detect', | 364 'value': 'auto_detect', |
413 'caption': '''Auto detect proxy settings''', | 365 'caption': '''Auto detect proxy settings''' |
414 }, | 366 }, |
415 { | 367 { |
416 'name': 'ProxyPacScript', | 368 'name': 'ProxyPacScript', |
417 'value': 'pac_script', | 369 'value': 'pac_script', |
418 'caption': '''Use a .pac proxy script''', | 370 'caption': '''Use a .pac proxy script''' |
419 }, | 371 }, |
420 { | 372 { |
421 'name': 'ProxyFixedServers', | 373 'name': 'ProxyFixedServers', |
422 'value': 'fixed_servers', | 374 'value': 'fixed_servers', |
423 'caption': '''Use fixed proxy servers''', | 375 'caption': '''Use fixed proxy servers''' |
424 }, | 376 }, |
425 { | 377 { |
426 'name': 'ProxyUseSystem', | 378 'name': 'ProxyUseSystem', |
427 'value': 'system', | 379 'value': 'system', |
428 'caption': '''Use system proxy settings''', | 380 'caption': '''Use system proxy settings''' |
429 }, | 381 }, |
430 ], | 382 ], |
431 'supported_on': ['chrome.*:10-'], | 383 'supported_on': ['chrome.*:10-'], |
432 'annotations': { | 384 'features': {'dynamic_refresh': 1}, |
433 'features': {'dynamic_refresh': 1}, | 385 'example_value': 'direct', |
434 'example_value': 'direct' | 386 'caption': '''Choose how to specify proxy server settings''', |
435 } | 387 'desc': '''Allows you to specify the proxy server used by <ph name="PR
ODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy
settings. |
| 388 |
| 389 If you choose to never use a proxy server and always connect directly,
all other options are ignored. |
| 390 |
| 391 If you choose to use system proxy settings or auto detect the proxy se
rver, all other options are ignored. |
| 392 |
| 393 If you choose fixed server proxy mode, you can specify further options
in 'Address or URL of proxy server' and 'Comma-separated list of proxy bypass r
ules'. |
| 394 |
| 395 If you choose to use a .pac proxy script, you must specify the URL to
the script in 'URL to a proxy .pac file'. |
| 396 |
| 397 For detailed examples, visit: |
| 398 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/des
ign-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph> |
| 399 |
| 400 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrom
e</ex></ph> ignores all proxy-related options specified from the command line.''
', |
436 }, | 401 }, |
437 { | 402 { |
438 'name': 'ProxyServerMode', | 403 'name': 'ProxyServerMode', |
439 'type': 'int-enum', | 404 'type': 'int-enum', |
440 'items': [ | 405 'items': [ |
441 { | 406 { |
442 'name': 'ProxyServerDisabled', | 407 'name': 'ProxyServerDisabled', |
443 'value': 0, | 408 'value': 0, |
444 'caption': '''Never use a proxy''' | 409 'caption': '''Never use a proxy''' |
445 }, | 410 }, |
446 { | 411 { |
447 'name': 'ProxyServerAutoDetect', | 412 'name': 'ProxyServerAutoDetect', |
448 'value': 1, | 413 'value': 1, |
449 'caption': '''Auto detect proxy settings''' | 414 'caption': '''Auto detect proxy settings''' |
450 }, | 415 }, |
451 { | 416 { |
452 'name': 'ProxyServerManual', | 417 'name': 'ProxyServerManual', |
453 'value': 2, | 418 'value': 2, |
454 'caption': '''Manually specify proxy settings''' | 419 'caption': '''Manually specify proxy settings''' |
455 }, | 420 }, |
456 { | 421 { |
457 'name': 'ProxyServerUseSystem', | 422 'name': 'ProxyServerUseSystem', |
458 'value': 3, | 423 'value': 3, |
459 'caption': '''Use system proxy settings''' | 424 'caption': '''Use system proxy settings''' |
460 }, | 425 }, |
461 ], | 426 ], |
462 'supported_on': ['chrome.*:8-'], | 427 'supported_on': ['chrome.*:8-'], |
463 'deprecated' : True, | 428 'features': {'dynamic_refresh': 1}, |
464 'annotations': { | 429 'example_value': 2, |
465 'features': {'dynamic_refresh': 1}, | |
466 'example_value': 2, | |
467 }, | |
468 'caption': '''Choose how to specify proxy server settings''', | 430 'caption': '''Choose how to specify proxy server settings''', |
469 'desc': '''This policy is deprecated, use ProxyMode instead. | 431 'desc': '''This policy is deprecated, use ProxyMode instead. |
470 | 432 |
471 Allows you to specify the proxy server used by <ph name="PRODUCT_NAME">$1<
ex>Google Chrome</ex></ph> and prevents users from changing proxy settings. | 433 Allows you to specify the proxy server used by <ph name="PRODUCT_NAME"
>$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy settings. |
472 | 434 |
473 If you choose to never use a proxy server and always connect directly, all
other options are ignored. | 435 If you choose to never use a proxy server and always connect directly,
all other options are ignored. |
474 | 436 |
475 If you choose to use system proxy settings or auto detect the proxy server
, all other options are ignored. | 437 If you choose to use system proxy settings or auto detect the proxy se
rver, all other options are ignored. |
476 | 438 |
477 If you choose manual proxy settings, you can specify further options in 'A
ddress or URL of proxy server', 'URL to a proxy .pac file' and 'Comma-separated
list of proxy bypass rules'. | 439 If you choose manual proxy settings, you can specify further options i
n 'Address or URL of proxy server', 'URL to a proxy .pac file' and 'Comma-separa
ted list of proxy bypass rules'. |
478 | 440 |
479 For detailed examples, visit: | 441 For detailed examples, visit: |
480 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/design-
documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph> | 442 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/des
ign-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph> |
481 | 443 |
482 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> ignores all proxy-related options specified from the command line.''', | 444 If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrom
e</ex></ph> ignores all proxy-related options specified from the command line.''
', |
483 }, | 445 }, |
484 { | 446 { |
485 'name': 'ProxyServer', | 447 'name': 'ProxyServer', |
486 'type': 'string', | 448 'type': 'string', |
487 'supported_on': ['chrome.*:8-'], | 449 'supported_on': ['chrome.*:8-'], |
488 'annotations': { | 450 'features': {'dynamic_refresh': 1}, |
489 'features': {'dynamic_refresh': 1}, | 451 'example_value': '123.123.123.123:8080', |
490 'example_value': '123.123.123.123:8080', | |
491 }, | |
492 'caption': '''Address or URL of proxy server''', | 452 'caption': '''Address or URL of proxy server''', |
493 'desc': '''You can specify the URL of the proxy server here. | 453 'desc': '''You can specify the URL of the proxy server here. |
494 | 454 |
495 This policy only takes effect if you have selected manual proxy settings a
t 'Choose how to specify proxy server settings'. | 455 This policy only takes effect if you have selected manual proxy settin
gs at 'Choose how to specify proxy server settings'. |
496 | 456 |
497 For more options and detailed examples, visit: | 457 For more options and detailed examples, visit: |
498 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/design-
documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''', | 458 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/des
ign-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
''', |
499 }, | 459 }, |
500 { | 460 { |
501 'name': 'ProxyPacUrl', | 461 'name': 'ProxyPacUrl', |
502 'type': 'string', | 462 'type': 'string', |
503 'supported_on': ['chrome.*:8-'], | 463 'supported_on': ['chrome.*:8-'], |
504 'annotations': { | 464 'features': {'dynamic_refresh': 1}, |
505 'features': {'dynamic_refresh': 1}, | 465 'example_value': 'http://internal.site/example.pac', |
506 'example_value': 'http://internal.site/example.pac', | |
507 }, | |
508 'caption': '''URL to a proxy .pac file''', | 466 'caption': '''URL to a proxy .pac file''', |
509 'desc': '''You can specify a URL to a proxy .pac file here. | 467 'desc': '''You can specify a URL to a proxy .pac file here. |
510 | 468 |
511 This policy only takes effect if you have selected manual proxy settings a
t 'Choose how to specify proxy server settings'. | 469 This policy only takes effect if you have selected manual proxy settin
gs at 'Choose how to specify proxy server settings'. |
512 | 470 |
513 For detailed examples, visit: | 471 For detailed examples, visit: |
514 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/design-
documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''', | 472 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/des
ign-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
''', |
515 }, | 473 }, |
516 { | 474 { |
517 'name': 'ProxyBypassList', | 475 'name': 'ProxyBypassList', |
518 'type': 'string', | 476 'type': 'string', |
519 'supported_on': ['chrome.*:8-'], | 477 'supported_on': ['chrome.*:8-'], |
520 'annotations': { | 478 'features': {'dynamic_refresh': 1}, |
521 'features': {'dynamic_refresh': 1}, | 479 'example_value': 'http://www.example1.com,http://www.example2.com,http
://internalsite/', |
522 'example_value': 'http://www.example1.com,http://www.example2.com,ht
tp://internalsite/', | |
523 }, | |
524 'caption': '''Proxy bypass rules''', | 480 'caption': '''Proxy bypass rules''', |
525 'desc': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will
bypass any proxy for the list of hosts given here. | 481 'desc': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will
bypass any proxy for the list of hosts given here. |
526 | 482 |
527 This policy only takes effect if you have selected manual proxy settings a
t 'Choose how to specify proxy server settings'. | 483 This policy only takes effect if you have selected manual proxy settin
gs at 'Choose how to specify proxy server settings'. |
528 | 484 |
529 For more detailed examples, visit: | 485 For more detailed examples, visit: |
530 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/design-
documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''', | 486 <ph name="PROXY_HELP_URL">$2<ex>http://www.chromium.org/developers/des
ign-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
''', |
531 'label': '''Comma-separated list of proxy bypass rules''', | 487 'label': '''Comma-separated list of proxy bypass rules''', |
532 }, | 488 }, |
533 ], | 489 ], |
534 }, | 490 }, |
535 { | 491 { |
536 'name': 'HTTPAuthentication', | 492 'name': 'HTTPAuthentication', |
537 'type': 'group', | 493 'type': 'group', |
538 'caption': '''Policies for HTTP Authentication''', | 494 'caption': '''Policies for HTTP Authentication''', |
539 'desc': '''Policies related to integrated HTTP authentication.''', | 495 'desc': '''Policies related to integrated HTTP authentication.''', |
540 'policies': [ | 496 'policies': [ |
541 { | 497 { |
542 'name': 'AuthSchemes', | 498 'name': 'AuthSchemes', |
543 'type': 'string', | 499 'type': 'string', |
544 'supported_on': ['chrome.*:9-'], | 500 'supported_on': ['chrome.*:9-'], |
545 'annotations': { | 501 'features': {'dynamic_refresh': 0}, |
546 'features': {'dynamic_refresh': 0}, | 502 'example_value': 'basic,digest,ntlm,negotiate', |
547 'example_value': 'basic,digest,ntlm,negotiate', | |
548 }, | |
549 'caption': '''Supported authentication schemes''', | 503 'caption': '''Supported authentication schemes''', |
550 'desc': '''Specifies which HTTP Authentication schemes are supported b
y <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. | 504 'desc': '''Specifies which HTTP Authentication schemes are supported b
y <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. |
551 | 505 |
552 Possible values are 'basic', 'digest', 'ntlm' and 'negotiate'. Separate mu
ltiple values with commas.''', | 506 Possible values are 'basic', 'digest', 'ntlm' and 'negotiate'. Separat
e multiple values with commas.''', |
553 }, | 507 }, |
554 { | 508 { |
555 'name': 'DisableAuthNegotiateCnameLookup', | 509 'name': 'DisableAuthNegotiateCnameLookup', |
556 'type': 'main', | 510 'type': 'main', |
557 'supported_on': ['chrome.*:9-'], | 511 'supported_on': ['chrome.*:9-'], |
558 'annotations': { | 512 'features': {'dynamic_refresh': 0}, |
559 'features': {'dynamic_refresh': 0}, | 513 'example_value': False, |
560 'example_value': False, | |
561 }, | |
562 'caption': '''Disable CNAME lookup when negotiating Kerberos authentic
ation''', | 514 'caption': '''Disable CNAME lookup when negotiating Kerberos authentic
ation''', |
563 'desc': '''Specifies whether the generated Kerberos SPN is based on th
e canonical DNS name or the original name entered. | 515 'desc': '''Specifies whether the generated Kerberos SPN is based on th
e canonical DNS name or the original name entered. |
564 | 516 |
565 If you enable this setting, CNAME lookup will be skipped and the server na
me will be used as entered. | 517 If you enable this setting, CNAME lookup will be skipped and the serve
r name will be used as entered. |
566 | 518 |
567 If you enable this setting, the canonical name of the server will be deter
mined via CNAME lookup.''', | 519 If you enable this setting, the canonical name of the server will be d
etermined via CNAME lookup.''', |
568 }, | 520 }, |
569 { | 521 { |
570 'name': 'EnableAuthNegotiatePort', | 522 'name': 'EnableAuthNegotiatePort', |
571 'type': 'main', | 523 'type': 'main', |
572 'supported_on': ['chrome.*:9-'], | 524 'supported_on': ['chrome.*:9-'], |
573 'annotations': { | 525 'features': {'dynamic_refresh': 0}, |
574 'features': {'dynamic_refresh': 0}, | 526 'example_value': False, |
575 'example_value': False, | |
576 }, | |
577 'caption': '''Include non-standard port in Kerberos SPN''', | 527 'caption': '''Include non-standard port in Kerberos SPN''', |
578 'desc': '''Specifies whether the generated Kerberos SPN should include
a non-standard port. | 528 'desc': '''Specifies whether the generated Kerberos SPN should include
a non-standard port. |
579 | 529 |
580 If you enable this setting, and a non-standard port (i.e., a port other th
an 80 or 443) is entered, it will be included in the generated Kerberos SPN. | 530 If you enable this setting, and a non-standard port (i.e., a port othe
r than 80 or 443) is entered, it will be included in the generated Kerberos SPN. |
581 | 531 |
582 If you disable this setting, the generated Kerberos SPN will not include a
port in any case.''', | 532 If you disable this setting, the generated Kerberos SPN will not inclu
de a port in any case.''', |
583 }, | 533 }, |
584 { | 534 { |
585 'name': 'AuthServerWhitelist', | 535 'name': 'AuthServerWhitelist', |
586 'type': 'string', | 536 'type': 'string', |
587 'supported_on': ['chrome.*:9-'], | 537 'supported_on': ['chrome.*:9-'], |
588 'annotations': { | 538 'features': {'dynamic_refresh': 0}, |
589 'features': {'dynamic_refresh': 0}, | 539 'example_value': '*example.com,foobar.com,*baz', |
590 'example_value': '*example.com,foobar.com,*baz', | |
591 }, | |
592 'caption': '''Authentication server whitelist''', | 540 'caption': '''Authentication server whitelist''', |
593 'desc': '''Specifies which servers should be whitelisted for integrate
d authentication. Integrated authentication is only enabled when <ph name="PRODU
CT_NAME">$1<ex>Google Chrome</ex></ph> receives an authentication challenge from
a proxy or from a server which is in this permitted list. | 541 'desc': '''Specifies which servers should be whitelisted for integrate
d authentication. Integrated authentication is only enabled when <ph name="PRODU
CT_NAME">$1<ex>Google Chrome</ex></ph> receives an authentication challenge from
a proxy or from a server which is in this permitted list. |
594 | 542 |
595 Separate multiple server names with commas. Wildcards (*) are allowed.''', | 543 Separate multiple server names with commas. Wildcards (*) are allowed.
''', |
596 }, | 544 }, |
597 { | 545 { |
598 'name': 'AuthNegotiateDelegateWhitelist', | 546 'name': 'AuthNegotiateDelegateWhitelist', |
599 'type': 'string', | 547 'type': 'string', |
600 'supported_on': ['chrome.*:9-'], | 548 'supported_on': ['chrome.*:9-'], |
601 'annotations': { | 549 'features': {'dynamic_refresh': 0}, |
602 'features': {'dynamic_refresh': 0}, | 550 'example_value': 'foobar.example.com', |
603 'example_value': 'foobar.example.com', | |
604 }, | |
605 'caption': '''Kerberos delegation server whitelist''', | 551 'caption': '''Kerberos delegation server whitelist''', |
606 'desc': '''Servers that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> may delegate to.''', | 552 'desc': '''Servers that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</e
x></ph> may delegate to.''', |
607 }, | 553 }, |
608 { | 554 { |
609 'name': 'GSSAPILibraryName', | 555 'name': 'GSSAPILibraryName', |
610 'type': 'string', | 556 'type': 'string', |
611 'supported_on': ['chrome.linux:9-', 'chrome.mac:9-'], | 557 'supported_on': ['chrome.linux:9-', 'chrome.mac:9-'], |
612 'annotations': { | 558 'features': {'dynamic_refresh': 0}, |
613 'features': {'dynamic_refresh': 0}, | 559 'example_value': 'libgssapi_krb5.so.2', |
614 'example_value': 'libgssapi_krb5.so.2', | |
615 }, | |
616 'caption': '''GSSAPI library name''', | 560 'caption': '''GSSAPI library name''', |
617 'desc': '''Specifies which GSSAPI library to use for HTTP Authenticati
on. You can set either just a library name, or a full path. If no setting is pro
vided, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will fall back to u
sing a default library name.''', | 561 'desc': '''Specifies which GSSAPI library to use for HTTP Authenticati
on. You can set either just a library name, or a full path. If no setting is pro
vided, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will fall back to u
sing a default library name.''', |
618 }, | 562 }, |
619 ], | 563 ], |
620 }, | 564 }, |
621 { | 565 { |
622 'name': 'Extensions', | 566 'name': 'Extensions', |
623 'type': 'group', | 567 'type': 'group', |
624 'caption': '''Extensions''', | 568 'caption': '''Extensions''', |
625 'desc': '''Configures extension-related policies. The user is not allowed
to install blacklisted extensions unless they are whitelisted. You can also forc
e <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to automatically install
extensions by specifying them in <ph name="EXTENSIONINSTALLFORCELIST_POLICY_NAM
E">ExtensionInstallForcelist</ph>. The blacklist takes precedence over the list
of forced extensions.''', | 569 'desc': '''Configures extension-related policies. The user is not allowed
to install blacklisted extensions unless they are whitelisted. You can also forc
e <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to automatically install
extensions by specifying them in <ph name="EXTENSIONINSTALLFORCELIST_POLICY_NAM
E">ExtensionInstallForcelist</ph>. The blacklist takes precedence over the list
of forced extensions.''', |
626 'policies': [ | 570 'policies': [ |
627 { | 571 { |
628 'name': 'ExtensionInstallBlacklist', | 572 'name': 'ExtensionInstallBlacklist', |
629 'type': 'list', | 573 'type': 'list', |
630 'supported_on': ['chrome.*:8-'], | 574 'supported_on': ['chrome.*:8-'], |
631 'annotations': { | 575 'features': {'dynamic_refresh': 1}, |
632 'features': {'dynamic_refresh': 1}, | 576 'example_value': ['extension_id1', 'extension_id2'], |
633 'example_value': ['extension_id1', 'extension_id2'], | |
634 }, | |
635 'caption': '''Configure extension installation blacklist''', | 577 'caption': '''Configure extension installation blacklist''', |
636 'desc': '''Allows you to specify which extensions the users can NOT in
stall. | 578 'desc': '''Allows you to specify which extensions the users can NOT in
stall. |
637 | 579 |
638 A blacklist value of * means all extensions are blacklisted unless they ar
e explicitly listed in the whitelist.''', | 580 A blacklist value of * means all extensions are blacklisted unless the
y are explicitly listed in the whitelist.''', |
639 'label': '''Extension IDs the user should be prevented from installing
(or * for all)''', | 581 'label': '''Extension IDs the user should be prevented from installing
(or * for all)''', |
640 }, | 582 }, |
641 { | 583 { |
642 'name': 'ExtensionInstallWhitelist', | 584 'name': 'ExtensionInstallWhitelist', |
643 'type': 'list', | 585 'type': 'list', |
644 'supported_on': ['chrome.*:8-'], | 586 'supported_on': ['chrome.*:8-'], |
645 'annotations': { | 587 'features': {'dynamic_refresh': 1}, |
646 'features': {'dynamic_refresh': 1}, | 588 'example_value': ['extension_id1', 'extension_id2'], |
647 'example_value': ['extension_id1', 'extension_id2'], | |
648 }, | |
649 'caption': '''Configure extension installation whitelist''', | 589 'caption': '''Configure extension installation whitelist''', |
650 'desc': '''Allows you to specify which extensions are not subject to t
he blacklist. | 590 'desc': '''Allows you to specify which extensions are not subject to t
he blacklist. |
651 | 591 |
652 A blacklist value of * means all extensions are blacklisted and users can
only install extensions listed in the whitelist. | 592 A blacklist value of * means all extensions are blacklisted and users
can only install extensions listed in the whitelist. |
653 | 593 |
654 By default, all extensions are whitelisted, but if all extensions have bee
n blacklisted by policy, the whitelist can be used to override that policy.''', | 594 By default, all extensions are whitelisted, but if all extensions have
been blacklisted by policy, the whitelist can be used to override that policy.'
'', |
655 'label': '''Extension IDs to exempt from the blacklist''', | 595 'label': '''Extension IDs to exempt from the blacklist''', |
656 }, | 596 }, |
657 { | 597 { |
658 'name': 'ExtensionInstallForcelist', | 598 'name': 'ExtensionInstallForcelist', |
659 'type': 'list', | 599 'type': 'list', |
660 'supported_on': ['chrome.*:9-'], | 600 'supported_on': ['chrome.*:9-'], |
661 'annotations': { | 601 'features': {'dynamic_refresh': 1}, |
662 'features': {'dynamic_refresh': 1}, | 602 'example_value': ['lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2.g
oogle.com/service/update2/crx'], |
663 'example_value': ['lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2
.google.com/service/update2/crx'], | |
664 }, | |
665 'caption': '''Configure the list of force-installed extensions''', | 603 'caption': '''Configure the list of force-installed extensions''', |
666 'desc': '''Allows you to specify a list of extensions that will be ins
talled silently, without user interaction. | 604 'desc': '''Allows you to specify a list of extensions that will be ins
talled silently, without user interaction. |
667 | 605 |
668 Each item of the list is a string, that contains an extension ID and an up
date URL delimited by a semicolon (<ph name="SEMICOLON">;</ph>). For example: <p
h name="EXTENSION_POLICY_EXAMPLE">lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clien
ts2.google.com/service/update2/crx</ph>. For each item, <ph name="PRODUCT_NAME">
$1<ex>Google Chrome</ex></ph> will retrieve the extension specified by the ID fr
om the specified URL and silently install it. The following pages explain how yo
u can host extensions on your own server. About update URLs: <ph name="LINK_TO_E
XTENSION_DOC1">http://code.google.com/chrome/extensions/autoupdate.html</ph> , a
bout hosting extensions in general: <ph name="LINK_TO_EXTENSION_DOC2">http://cod
e.google.com/chrome/extensions/hosting.html</ph>. | 606 Each item of the list is a string, that contains an extension ID and a
n update URL delimited by a semicolon (<ph name="SEMICOLON">;</ph>). For example
: <ph name="EXTENSION_POLICY_EXAMPLE">lcncmkcnkcdbbanbjakcencbaoegdjlp;https://c
lients2.google.com/service/update2/crx</ph>. For each item, <ph name="PRODUCT_NA
ME">$1<ex>Google Chrome</ex></ph> will retrieve the extension specified by the I
D from the specified URL and silently install it. The following pages explain ho
w you can host extensions on your own server. About update URLs: <ph name="LINK_
TO_EXTENSION_DOC1">http://code.google.com/chrome/extensions/autoupdate.html</ph>
, about hosting extensions in general: <ph name="LINK_TO_EXTENSION_DOC2">http:/
/code.google.com/chrome/extensions/hosting.html</ph>. |
669 | 607 |
670 Users will be unable to uninstall extensions that are specified by this po
licy. If you remove an extension from this list, then it will be automatically u
ninstalled by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Extensions
that are blacklisted in 'ExtensionInstallBlacklist' and not whitelisted, cannot
be force-installed by this policy.''', | 608 Users will be unable to uninstall extensions that are specified by thi
s policy. If you remove an extension from this list, then it will be automatical
ly uninstalled by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Extensi
ons that are blacklisted in 'ExtensionInstallBlacklist' and not whitelisted, can
not be force-installed by this policy.''', |
671 'label': '''Extension IDs and update URLs to be silently installed''', | 609 'label': '''Extension IDs and update URLs to be silently installed''', |
672 }, | 610 }, |
673 ], | 611 ], |
674 }, | 612 }, |
675 { | 613 { |
676 'name': 'ShowHomeButton', | 614 'name': 'ShowHomeButton', |
677 'type': 'main', | 615 'type': 'main', |
678 'supported_on': ['chrome.*:8-'], | 616 'supported_on': ['chrome.*:8-'], |
679 'annotations': { | 617 'features': {'dynamic_refresh': 1}, |
680 'features': {'dynamic_refresh': 1}, | 618 'example_value': True, |
681 'example_value': True, | |
682 }, | |
683 'caption': '''Show Home button on toolbar''', | 619 'caption': '''Show Home button on toolbar''', |
684 'desc': '''Shows the Home button on <ph name="PRODUCT_NAME">$1<ex>Google | 620 'desc': '''Shows the Home button on <ph name="PRODUCT_NAME">$1<ex>Google |
685 Chrome</ex></ph>'s toolbar. | 621 Chrome</ex></ph>'s toolbar. |
686 | 622 |
687 If you enable this setting, the Home button is always shown. | 623 If you enable this setting, the Home button is always shown. |
688 | 624 |
689 If you disable this setting, the Home button is never shown. | 625 If you disable this setting, the Home button is never shown. |
690 | 626 |
691 If you enable or disable this setting, users cannot change or override this
setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 627 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
692 }, | 628 }, |
693 { | 629 { |
694 'name': 'DeveloperToolsDisabled', | 630 'name': 'DeveloperToolsDisabled', |
695 'type': 'main', | 631 'type': 'main', |
696 'supported_on': ['chrome.*:9-'], | 632 'supported_on': ['chrome.*:9-'], |
697 'annotations': { | 633 'features': {'dynamic_refresh': 1}, |
698 'features': {'dynamic_refresh': 1}, | 634 'example_value': False, |
699 'example_value': False, | |
700 }, | |
701 'caption': '''Disable Developer Tools''', | 635 'caption': '''Disable Developer Tools''', |
702 'desc': '''Disables the Developer Tools and the JavaScript console. | 636 'desc': '''Disables the Developer Tools and the JavaScript console. |
703 | 637 |
704 If you enable this setting, the Developer Tools can not be accessed and we
b-site elements can not be inspected anymore. Any keyboard shortcuts and any men
u or context menu entries to open the Developer Tools or the JavaScript Console
will be disabled.''', | 638 If you enable this setting, the Developer Tools can not be accessed and we
b-site elements can not be inspected anymore. Any keyboard shortcuts and any men
u or context menu entries to open the Developer Tools or the JavaScript Console
will be disabled.''', |
705 }, | 639 }, |
706 { | 640 { |
707 'name': 'RestoreOnStartupGroup', | 641 'name': 'RestoreOnStartupGroup', |
708 'type': 'group', | 642 'type': 'group', |
709 'caption': '''Startup pages''', | 643 'caption': '''Startup pages''', |
710 'desc': '''Allows you to configure the pages that are loaded on startup. | 644 'desc': '''Allows you to configure the pages that are loaded on startup. |
(...skipping 14 matching lines...) Expand all Loading... |
725 'value': 1, | 659 'value': 1, |
726 'caption': '''Reopen the URLs that were open last''' | 660 'caption': '''Reopen the URLs that were open last''' |
727 }, | 661 }, |
728 { | 662 { |
729 'name': 'RestoreOnStartupIsURLs', | 663 'name': 'RestoreOnStartupIsURLs', |
730 'value': 4, | 664 'value': 4, |
731 'caption': '''Open a list of URLs''' | 665 'caption': '''Open a list of URLs''' |
732 }, | 666 }, |
733 ], | 667 ], |
734 'supported_on': ['chrome.*:8-'], | 668 'supported_on': ['chrome.*:8-'], |
735 'annotations': { | 669 'features': {'dynamic_refresh': 1}, |
736 'features': {'dynamic_refresh': 1}, | 670 'example_value': 4, |
737 'example_value': 4, | |
738 }, | |
739 'caption': '''Action on startup''', | 671 'caption': '''Action on startup''', |
740 'desc': '''Allows you to specify the behavior on startup. | 672 'desc': '''Allows you to specify the behavior on startup. |
741 | 673 |
742 If you choose 'Open home page' the home page will always be opened when yo
u start <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. | 674 If you choose 'Open home page' the home page will always be opened whe
n you start <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. |
743 | 675 |
744 If you choose 'Reopen the URLs that were open last', the URLs that were op
en last time <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> was closed wi
ll be reopened. | 676 If you choose 'Reopen the URLs that were open last', the URLs that wer
e open last time <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> was close
d will be reopened. |
745 | 677 |
746 If you choose 'Open a list of URLs', the list of 'URLs to open on startup'
will be opened when a user starts <ph name="PRODUCT_NAME">$1<ex>Google Chrome</
ex></ph>. | 678 If you choose 'Open a list of URLs', the list of 'URLs to open on star
tup' will be opened when a user starts <ph name="PRODUCT_NAME">$1<ex>Google Chro
me</ex></ph>. |
747 | 679 |
748 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', | 680 If you enable or disable this setting, users cannot change or override
this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', |
749 }, | 681 }, |
750 { | 682 { |
751 'name': 'RestoreOnStartupURLs', | 683 'name': 'RestoreOnStartupURLs', |
752 'type': 'list', | 684 'type': 'list', |
753 'supported_on': ['chrome.*:8-'], | 685 'supported_on': ['chrome.*:8-'], |
754 'annotations': { | 686 'features': {'dynamic_refresh': 1}, |
755 'features': {'dynamic_refresh': 1}, | 687 'example_value': ['http://example.com', 'http://chromium.org'], |
756 'example_value': ['http://example.com', 'http://chromium.org'], | |
757 }, | |
758 'caption': '''URLs to open on startup''', | 688 'caption': '''URLs to open on startup''', |
759 'desc': '''If 'Open a list of URLs' is selected as the startup action,
this allows you to specify the list of URLs that are opened.''', | 689 'desc': '''If 'Open a list of URLs' is selected as the startup action,
this allows you to specify the list of URLs that are opened.''', |
760 }, | 690 }, |
761 ], | 691 ], |
762 }, | 692 }, |
763 { | 693 { |
764 'name': 'DefaultSearchProvider', | 694 'name': 'DefaultSearchProvider', |
765 'type': 'group', | 695 'type': 'group', |
766 'caption': '''Default search provider''', | 696 'caption': '''Default search provider''', |
767 'desc': '''Configures the default search provider. You can specify the def
ault search provider that the user will use or choose to disable default search.
''', | 697 'desc': '''Configures the default search provider. You can specify the def
ault search provider that the user will use or choose to disable default search.
''', |
768 'policies': [ | 698 'policies': [ |
769 { | 699 { |
770 'name': 'DefaultSearchProviderEnabled', | 700 'name': 'DefaultSearchProviderEnabled', |
771 'type': 'main', | 701 'type': 'main', |
772 'supported_on': ['chrome.*:8-'], | 702 'supported_on': ['chrome.*:8-'], |
773 'annotations': { | 703 'features': {'dynamic_refresh': 1}, |
774 'features': {'dynamic_refresh': 1}, | 704 'example_value': True, |
775 'example_value': True, | |
776 }, | |
777 'caption': '''Enable the default search provider''', | 705 'caption': '''Enable the default search provider''', |
778 'desc': '''Enables the use of a default search provider. | 706 'desc': '''Enables the use of a default search provider. |
779 | 707 |
780 If you enable this setting, a default search is performed when the user ty
pes text in the omnibox that is not a URL. | 708 If you enable this setting, a default search is performed when the use
r types text in the omnibox that is not a URL. |
781 | 709 |
782 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 choose th
e default provider. | 710 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. |
783 | 711 |
784 If you diable this setting, no search is performed when the user enters no
n-URL text in the omnibox. | 712 If you diable this setting, no search is performed when the user enter
s non-URL text in the omnibox. |
785 | 713 |
786 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME"> | 714 If you enable or disable this setting, users cannot change or override
this setting in <ph name="PRODUCT_NAME"> |
787 $1<ex>Google Chrome</ex> | 715 $1<ex>Google Chrome</ex> |
788 </ph>.''', | 716 </ph>.''', |
789 }, | 717 }, |
790 { | 718 { |
791 'name': 'DefaultSearchProviderName', | 719 'name': 'DefaultSearchProviderName', |
792 'type': 'string', | 720 'type': 'string', |
793 'supported_on': ['chrome.*:8-'], | 721 'supported_on': ['chrome.*:8-'], |
794 'annotations': { | 722 'features': {'dynamic_refresh': 1}, |
795 'features': {'dynamic_refresh': 1}, | 723 'example_value': 'My Intranet Search', |
796 'example_value': 'My Intranet Search', | |
797 }, | |
798 'caption': '''Default search provider name''', | 724 'caption': '''Default search provider name''', |
799 'desc': '''Specifies the name of the default search provider. If left
empty, the host name specified by the search URL will be used.''', | 725 'desc': '''Specifies the name of the default search provider. If left
empty, the host name specified by the search URL will be used.''', |
800 }, | 726 }, |
801 { | 727 { |
802 'name': 'DefaultSearchProviderKeyword', | 728 'name': 'DefaultSearchProviderKeyword', |
803 'type': 'string', | 729 'type': 'string', |
804 'supported_on': ['chrome.*:8-'], | 730 'supported_on': ['chrome.*:8-'], |
805 'annotations': { | 731 'features': {'dynamic_refresh': 1}, |
806 'features': {'dynamic_refresh': 1}, | 732 'example_value': 'mis', |
807 'example_value': 'mis', | |
808 }, | |
809 'caption': '''Default search provider keyword''', | 733 'caption': '''Default search provider keyword''', |
810 'desc': '''Specifies the keyword, which is the shortcut used in the om
nibox to trigger the search for this provider. Optional.''', | 734 'desc': '''Specifies the keyword, which is the shortcut used in the om
nibox to trigger the search for this provider. Optional.''', |
811 }, | 735 }, |
812 { | 736 { |
813 'name': 'DefaultSearchProviderSearchURL', | 737 'name': 'DefaultSearchProviderSearchURL', |
814 'type': 'string', | 738 'type': 'string', |
815 'supported_on': ['chrome.*:8-'], | 739 'supported_on': ['chrome.*:8-'], |
816 'annotations': { | 740 'features': {'dynamic_refresh': 1}, |
817 'features': {'dynamic_refresh': 1}, | 741 'example_value': 'http://search.my.company/search?q={searchTerms}', |
818 'example_value': 'http://search.my.company/search?q={searchTerms}', | |
819 }, | |
820 'caption': '''Default search provider search URL''', | 742 'caption': '''Default search provider search URL''', |
821 'desc': '''Specifies the URL of the search engine used when doing a de
fault search. The URL should contain the string '<ph name="SEARCH_TERM_MARKER">{
searchTerms}</ph>', which will be replaced at query time by the terms the user i
s searching for.''', | 743 'desc': '''Specifies the URL of the search engine used when doing a de
fault search. The URL should contain the string '<ph name="SEARCH_TERM_MARKER">{
searchTerms}</ph>', which will be replaced at query time by the terms the user i
s searching for.''', |
822 }, | 744 }, |
823 { | 745 { |
824 'name': 'DefaultSearchProviderSuggestURL', | 746 'name': 'DefaultSearchProviderSuggestURL', |
825 'type': 'string', | 747 'type': 'string', |
826 'supported_on': ['chrome.*:8-'], | 748 'supported_on': ['chrome.*:8-'], |
827 'annotations': { | 749 'features': {'dynamic_refresh': 1}, |
828 'features': {'dynamic_refresh': 1}, | 750 'example_value': 'http://search.my.company/suggest?q={searchTerms}', |
829 'example_value': 'http://search.my.company/suggest?q={searchTerms}', | |
830 }, | |
831 'caption': '''Default search provider suggest URL''', | 751 'caption': '''Default search provider suggest URL''', |
832 'desc': '''Specifies the URL of the search engine used to provide sear
ch suggestions. The URL should contain the string '<ph name="SEARCH_TERM_MARKER"
>{searchTerms}</ph>', which will be replaced at query time by the text the user
has entered so far. Optional.''', | 752 'desc': '''Specifies the URL of the search engine used to provide sear
ch suggestions. The URL should contain the string '<ph name="SEARCH_TERM_MARKER"
>{searchTerms}</ph>', which will be replaced at query time by the text the user
has entered so far. Optional.''', |
833 }, | 753 }, |
834 { | 754 { |
835 'name': 'DefaultSearchProviderInstantURL', | 755 'name': 'DefaultSearchProviderInstantURL', |
836 'type': 'string', | 756 'type': 'string', |
837 'supported_on': ['chrome.*:10-'], | 757 'supported_on': ['chrome.*:10-'], |
838 'annotations': { | 758 'features': {'dynamic_refresh': 1}, |
839 'features': {'dynamic_refresh': 1}, | 759 'example_value': 'http://search.my.company/suggest?q={searchTerms}', |
840 'example_value': 'http://search.my.company/suggest?q={searchTerms}', | |
841 }, | |
842 'caption': '''Default search provider instant URL''', | 760 'caption': '''Default search provider instant URL''', |
843 'desc': '''Specifies the URL of the search engine used to provide inst
ant results. The URL should contain the string <ph name="SEARCH_TERM_MARKER">'{s
earchTerms}'</ph>, which will be replaced at query time by the text the user has
entered so far. Optional.''', | 761 'desc': '''Specifies the URL of the search engine used to provide inst
ant results. The URL should contain the string <ph name="SEARCH_TERM_MARKER">'{s
earchTerms}'</ph>, which will be replaced at query time by the text the user has
entered so far. Optional.''', |
844 }, | 762 }, |
845 { | 763 { |
846 'name': 'DefaultSearchProviderIconURL', | 764 'name': 'DefaultSearchProviderIconURL', |
847 'type': 'string', | 765 'type': 'string', |
848 'supported_on': ['chrome.*:8-'], | 766 'supported_on': ['chrome.*:8-'], |
849 'annotations': { | 767 'features': {'dynamic_refresh': 1}, |
850 'features': {'dynamic_refresh': 1}, | 768 'example_value': 'http://search.my.company/favicon.ico', |
851 'example_value': 'http://search.my.company/favicon.ico', | |
852 }, | |
853 'caption': '''Default search provider icon''', | 769 'caption': '''Default search provider icon''', |
854 'desc': '''Specifies the favorite icon URL of the default search provi
der. Optional.''', | 770 'desc': '''Specifies the favorite icon URL of the default search provi
der. Optional.''', |
855 }, | 771 }, |
856 { | 772 { |
857 'name': 'DefaultSearchProviderEncodings', | 773 'name': 'DefaultSearchProviderEncodings', |
858 'type': 'list', | 774 'type': 'list', |
859 'supported_on': ['chrome.*:8-'], | 775 'supported_on': ['chrome.*:8-'], |
860 'annotations': { | 776 'features': {'dynamic_refresh': 1}, |
861 'features': {'dynamic_refresh': 1}, | 777 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'], |
862 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'], | |
863 }, | |
864 'caption': '''Default search provider encodings''', | 778 'caption': '''Default search provider encodings''', |
865 'desc': '''Specifies the character encodings supported by the search p
rovider. Encodings are code page names like UTF-8, GB2312, and ISO-8859-1. They
are tried in the order provided. The default is UTF-8.''', | 779 'desc': '''Specifies the character encodings supported by the search p
rovider. Encodings are code page names like UTF-8, GB2312, and ISO-8859-1. They
are tried in the order provided. The default is UTF-8.''', |
866 }, | 780 }, |
867 ], | 781 ], |
868 }, | 782 }, |
869 { | 783 { |
870 'name': 'ContentSettings', | 784 'name': 'ContentSettings', |
871 'type': 'group', | 785 'type': 'group', |
872 'caption': '''Content Settings''', | 786 'caption': '''Content Settings''', |
873 'desc': '''Content Settings allow you to specify how contents of a specifi
c type (for example Cookies, Images or JavaScript) is handled.''', | 787 'desc': '''Content Settings allow you to specify how contents of a specifi
c type (for example Cookies, Images or JavaScript) is handled.''', |
874 'policies': [ | 788 'policies': [ |
875 { | 789 { |
876 'name': 'DefaultCookiesSetting', | 790 'name': 'DefaultCookiesSetting', |
877 'type': 'int-enum', | 791 'type': 'int-enum', |
878 'items': [ | 792 'items': [ |
879 { | 793 { |
880 'name': 'AllowCookies', | 794 'name': 'AllowCookies', |
881 'value': 0, | 795 'value': 0, |
882 'caption': '''Allow all sites to set local data.''' | 796 'caption': '''Allow all sites to set local data.''' |
883 }, | 797 }, |
884 { | 798 { |
885 'name': 'BlockCookies', | 799 'name': 'BlockCookies', |
886 'value': 1, | 800 'value': 1, |
887 'caption': '''Do not allow any site to set local data''' | 801 'caption': '''Do not allow any site to set local data''' |
888 }, | 802 }, |
889 ], | 803 ], |
890 'supported_on': ['chrome.*:10-'], | 804 'supported_on': ['chrome.*:10-'], |
891 'annotations': { | 805 'features': {'dynamic_refresh': 1}, |
892 'features': {'dynamic_refresh': 1}, | 806 'example_value': 0, |
893 'example_value': 0, | |
894 }, | |
895 'caption': '''Default cookies setting''', | 807 'caption': '''Default cookies setting''', |
896 'desc': '''Allows you to set whether websites are allowed to set local
data. Setting local data can be either allowed for all websites or denied for a
ll websites.''', | 808 'desc': '''Allows you to set whether websites are allowed to set local
data. Setting local data can be either allowed for all websites or denied for a
ll websites.''', |
897 }, | 809 }, |
898 { | 810 { |
899 'name': 'DefaultImagesSetting', | 811 'name': 'DefaultImagesSetting', |
900 'type': 'int-enum', | 812 'type': 'int-enum', |
901 'items': [ | 813 'items': [ |
902 { | 814 { |
903 'name': 'AllowImages', | 815 'name': 'AllowImages', |
904 'value': 0, | 816 'value': 0, |
905 'caption': '''Allow all sites to show all images''' | 817 'caption': '''Allow all sites to show all images''' |
906 }, | 818 }, |
907 { | 819 { |
908 'name': 'BlockImages', | 820 'name': 'BlockImages', |
909 'value': 1, | 821 'value': 1, |
910 'caption': '''Do not allow any site to show images''' | 822 'caption': '''Do not allow any site to show images''' |
911 }, | 823 }, |
912 ], | 824 ], |
913 'supported_on': ['chrome.*:10-'], | 825 'supported_on': ['chrome.*:10-'], |
914 'annotations': { | 826 'features': {'dynamic_refresh': 1}, |
915 'features': {'dynamic_refresh': 1}, | 827 'example_value': 0, |
916 'example_value': 0, | |
917 }, | |
918 'caption': '''Default images setting''', | 828 'caption': '''Default images setting''', |
919 'desc': '''Allows you to set whether websites are allowed to display i
mages. Displaying images can be either allowed for all websites or denied for al
l websites.''', | 829 'desc': '''Allows you to set whether websites are allowed to display i
mages. Displaying images can be either allowed for all websites or denied for al
l websites.''', |
920 }, | 830 }, |
921 { | 831 { |
922 'name': 'DefaultJavaScriptSetting', | 832 'name': 'DefaultJavaScriptSetting', |
923 'type': 'int-enum', | 833 'type': 'int-enum', |
924 'items': [ | 834 'items': [ |
925 { | 835 { |
926 'name': 'AllowJavaScript', | 836 'name': 'AllowJavaScript', |
927 'value': 0, | 837 'value': 0, |
928 'caption': '''Allow all sites to run JavaScript''' | 838 'caption': '''Allow all sites to run JavaScript''' |
929 }, | 839 }, |
930 { | 840 { |
931 'name': 'BlockJavaScript', | 841 'name': 'BlockJavaScript', |
932 'value': 1, | 842 'value': 1, |
933 'caption': '''Do not allow any site to run JavaScript''' | 843 'caption': '''Do not allow any site to run JavaScript''' |
934 }, | 844 }, |
935 ], | 845 ], |
936 'supported_on': ['chrome.*:10-'], | 846 'supported_on': ['chrome.*:10-'], |
937 'annotations': { | 847 'features': {'dynamic_refresh': 1}, |
938 'features': {'dynamic_refresh': 1}, | 848 'example_value': 0, |
939 'example_value': 0, | |
940 }, | |
941 'caption': '''Default JavaScript setting''', | 849 'caption': '''Default JavaScript setting''', |
942 'desc': '''Allows you to set whether websites are allowed to run JavaS
cript. Running JavaScript can be either allowed for all websites or denied for a
ll websites.''', | 850 'desc': '''Allows you to set whether websites are allowed to run JavaS
cript. Running JavaScript can be either allowed for all websites or denied for a
ll websites.''', |
943 }, | 851 }, |
944 { | 852 { |
945 'name': 'DefaultPluginsSetting', | 853 'name': 'DefaultPluginsSetting', |
946 'type': 'int-enum', | 854 'type': 'int-enum', |
947 'items': [ | 855 'items': [ |
948 { | 856 { |
949 'name': 'AllowPlugins', | 857 'name': 'AllowPlugins', |
950 'value': 0, | 858 'value': 0, |
951 'caption': '''Allow all sites to automatically run plugins''' | 859 'caption': '''Allow all sites to automatically run plugins''' |
952 }, | 860 }, |
953 { | 861 { |
954 'name': 'BlockPlugins', | 862 'name': 'BlockPlugins', |
955 'value': 1, | 863 'value': 1, |
956 'caption': '''Block all plugins''' | 864 'caption': '''Block all plugins''' |
957 }, | 865 }, |
958 ], | 866 ], |
959 'supported_on': ['chrome.*:10-'], | 867 'supported_on': ['chrome.*:10-'], |
960 'annotations': { | 868 'features': {'dynamic_refresh': 1}, |
961 'features': {'dynamic_refresh': 1}, | 869 'example_value': 0, |
962 'example_value': 0, | |
963 }, | |
964 'caption': '''Default plugins setting''', | 870 'caption': '''Default plugins setting''', |
965 'desc': '''Allows you to set whether websites are allowed to automatic
ally run plugins. Automatically running plugins can be either allowed for all we
bsites or denied for all websites.''', | 871 'desc': '''Allows you to set whether websites are allowed to automatic
ally run plugins. Automatically running plugins can be either allowed for all we
bsites or denied for all websites.''', |
966 }, | 872 }, |
967 { | 873 { |
968 'name': 'DefaultPopupsSetting', | 874 'name': 'DefaultPopupsSetting', |
969 'type': 'int-enum', | 875 'type': 'int-enum', |
970 'items': [ | 876 'items': [ |
971 { | 877 { |
972 'name': 'AllowPopups', | 878 'name': 'AllowPopups', |
973 'value': 0, | 879 'value': 0, |
974 'caption': '''Allow all sites to show pop-ups''' | 880 'caption': '''Allow all sites to show pop-ups''' |
975 }, | 881 }, |
976 { | 882 { |
977 'name': 'BlockPopups', | 883 'name': 'BlockPopups', |
978 'value': 1, | 884 'value': 1, |
979 'caption': '''Do not allow any site to show popups''' | 885 'caption': '''Do not allow any site to show popups''' |
980 }, | 886 }, |
981 ], | 887 ], |
982 'supported_on': ['chrome.*:10-'], | 888 'supported_on': ['chrome.*:10-'], |
983 'annotations': { | 889 'features': {'dynamic_refresh': 1}, |
984 'features': {'dynamic_refresh': 1}, | 890 'example_value': 1, |
985 'example_value': 1, | |
986 }, | |
987 'caption': '''Default popups setting''', | 891 'caption': '''Default popups setting''', |
988 'desc': '''Allows you to set whether websites are allowed to show pop-
ups. Showing popups can be either allowed for all websites or denied for all web
sites.''', | 892 'desc': '''Allows you to set whether websites are allowed to show pop-
ups. Showing popups can be either allowed for all websites or denied for all web
sites.''', |
989 }, | 893 }, |
990 { | 894 { |
991 'name': 'DefaultNotificationSetting', | 895 'name': 'DefaultNotificationSetting', |
992 'type': 'int-enum', | 896 'type': 'int-enum', |
993 'items': [ | 897 'items': [ |
994 { | 898 { |
995 'name': 'AllowNotifications', | 899 'name': 'AllowNotifications', |
996 'value': 0, | 900 'value': 0, |
997 'caption': '''Allow sites to show desktop notifications''' | 901 'caption': '''Allow sites to show desktop notifications''' |
998 }, | 902 }, |
999 { | 903 { |
1000 'name': 'BlockNotifications', | 904 'name': 'BlockNotifications', |
1001 'value': 1, | 905 'value': 1, |
1002 'caption': '''Do not allow any site to show desktop notifications'
'' | 906 'caption': '''Do not allow any site to show desktop notifications'
'' |
1003 }, | 907 }, |
1004 { | 908 { |
1005 'name': 'AskNotifications', | 909 'name': 'AskNotifications', |
1006 'value': 2, | 910 'value': 2, |
1007 'caption': '''Ask every time a site wants to show desktop notifica
tions''' | 911 'caption': '''Ask every time a site wants to show desktop notifica
tions''' |
1008 }, | 912 }, |
1009 ], | 913 ], |
1010 'supported_on': ['chrome.*:10-'], | 914 'supported_on': ['chrome.*:10-'], |
1011 'annotations': { | 915 'features': {'dynamic_refresh': 1}, |
1012 'features': {'dynamic_refresh': 1}, | 916 'example_value': 2, |
1013 'example_value': 2, | |
1014 }, | |
1015 'caption': '''Default notification setting''', | 917 'caption': '''Default notification setting''', |
1016 'desc': '''Allows you to set whether websites are allowed to display d
esktop notifications. Displaying desktop notifications can be allowed by default
, denied by default or the user can be asked everytime a website wants to show d
esktop notifications.''', | 918 'desc': '''Allows you to set whether websites are allowed to display d
esktop notifications. Displaying desktop notifications can be allowed by default
, denied by default or the user can be asked everytime a website wants to show d
esktop notifications.''', |
1017 }, | 919 }, |
1018 { | 920 { |
1019 'name': 'DefaultGeolocationSetting', | 921 'name': 'DefaultGeolocationSetting', |
1020 'type': 'int-enum', | 922 'type': 'int-enum', |
1021 'items': [ | 923 'items': [ |
1022 { | 924 { |
1023 'name': 'AllowGeolocation', | 925 'name': 'AllowGeolocation', |
1024 'value': 0, | 926 'value': 0, |
1025 'caption': '''Allow sites to track the users' physical location''' | 927 'caption': '''Allow sites to track the users' physical location''' |
1026 }, | 928 }, |
1027 { | 929 { |
1028 'name': 'BlockGeolocation', | 930 'name': 'BlockGeolocation', |
1029 'value': 1, | 931 'value': 1, |
1030 'caption': '''Do not allow any site to track the users' physical l
ocation''' | 932 'caption': '''Do not allow any site to track the users' physical l
ocation''' |
1031 }, | 933 }, |
1032 { | 934 { |
1033 'name': 'AskGeolocation', | 935 'name': 'AskGeolocation', |
1034 'value': 2, | 936 'value': 2, |
1035 'caption': '''Ask whenever a site wants to track the users' physic
al location''' | 937 'caption': '''Ask whenever a site wants to track the users' physic
al location''' |
1036 }, | 938 }, |
1037 ], | 939 ], |
1038 'supported_on': ['chrome.*:10-'], | 940 'supported_on': ['chrome.*:10-'], |
1039 'annotations': { | 941 'features': {'dynamic_refresh': 1}, |
1040 'features': {'dynamic_refresh': 1}, | 942 'example_value': 0, |
1041 'example_value': 0, | |
1042 }, | |
1043 'caption': '''Default geolocation setting''', | 943 'caption': '''Default geolocation setting''', |
1044 'desc': '''Allows you to set whether websites are allowed to track the
users' physical location. Tracking the users' physical location can be allowed
by default, denied by default or the user can be asked everytime a website reque
sts the pysical location.''', | 944 'desc': '''Allows you to set whether websites are allowed to track the
users' physical location. Tracking the users' physical location can be allowed
by default, denied by default or the user can be asked everytime a website reque
sts the pysical location.''', |
1045 }, | 945 }, |
1046 ], | 946 ], |
1047 }, | 947 }, |
1048 { | 948 { |
1049 'name': 'Disable3DAPIs', | 949 'name': 'Disable3DAPIs', |
1050 'type': 'main', | 950 'type': 'main', |
1051 'supported_on': ['chrome.*:9-'], | 951 'supported_on': ['chrome.*:9-'], |
1052 'annotations': { | 952 'features': {'dynamic_refresh': 0}, |
1053 'features': {'dynamic_refresh': 0}, | 953 'example_value': False, |
1054 'example_value': False, | |
1055 }, | |
1056 'caption': '''Disable support for 3D graphics APIs''', | 954 'caption': '''Disable support for 3D graphics APIs''', |
1057 'desc': '''Disable support for 3D graphics APIs. | 955 'desc': '''Disable support for 3D graphics APIs. |
1058 | 956 |
1059 Enabling this setting prevents web pages from accessing the graphics proce
ssing unit (GPU). Specifically, web pages can not access the WebGL API and plugi
ns can not use the Pepper 3D API. | 957 Enabling this setting prevents web pages from accessing the graphics proce
ssing unit (GPU). Specifically, web pages can not access the WebGL API and plugi
ns can not use the Pepper 3D API. |
1060 | 958 |
1061 Disabling this setting potentially allows web pages to use the WebGL API a
nd plugins to use the Pepper 3D API. The default settings of the browser may sti
ll require command line arguments to be passed in order to use these APIs.''', | 959 Disabling this setting potentially allows web pages to use the WebGL API a
nd plugins to use the Pepper 3D API. The default settings of the browser may sti
ll require command line arguments to be passed in order to use these APIs.''', |
1062 }, | 960 }, |
1063 { | 961 { |
1064 'name': 'ChromeFrameRendererSettings', | 962 'name': 'ChromeFrameRendererSettings', |
1065 'type': 'group', | 963 'type': 'group', |
1066 'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<e
x>Google Chrome Frame</ex></ph>''', | 964 'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<e
x>Google Chrome Frame</ex></ph>''', |
1067 'desc': '''Allows you to configure the default HTML renderer when <ph name
="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex> | 965 'desc': '''Allows you to configure the default HTML renderer when <ph name
="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex> |
1068 </ph> is installed. | 966 </ph> is installed. |
1069 The default setting is to allow the host browser do the rendering, but you | 967 The default setting is to allow the host browser do the rendering, but you |
1070 can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex> | 968 can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex> |
1071 Google Chrome Frame</ex></ph> render HTML pages by default.''', | 969 Google Chrome Frame</ex></ph> render HTML pages by default.''', |
1072 'policies': [ | 970 'policies': [ |
1073 { | 971 { |
1074 'name': 'ChromeFrameRendererSettings', | 972 'name': 'ChromeFrameRendererSettings', |
1075 'type': 'int-enum', | 973 'type': 'int-enum', |
1076 'items': [ | 974 'items': [ |
1077 { | 975 { |
1078 'name': 'RenderInHost', | 976 'name': 'RenderInHost', |
1079 'value': 0, | 977 'value': 0, |
1080 'caption': '''Use the host browser by default''' | 978 'caption': '''Use the host browser by default''' |
1081 }, | 979 }, |
1082 { | 980 { |
1083 'name': 'RenderInChromeFrame', | 981 'name': 'RenderInChromeFrame', |
1084 'value': 1, | 982 'value': 1, |
1085 'caption': '''Use <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrom
e Frame</ex></ph> by default''' | 983 'caption': '''Use <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrom
e Frame</ex></ph> by default''' |
1086 }, | 984 }, |
1087 ], | 985 ], |
1088 'supported_on': ['chrome_frame:8-'], | 986 'supported_on': ['chrome_frame:8-'], |
1089 'annotations': { | 987 'features': {'dynamic_refresh': 0}, |
1090 'features': {'dynamic_refresh': 0}, | 988 'example_value': 1, |
1091 'example_value': 1, | |
1092 }, | |
1093 'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">
$3<ex>Google Chrome Frame</ex></ph>''', | 989 'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">
$3<ex>Google Chrome Frame</ex></ph>''', |
1094 'desc': '''Allows you to configure the default HTML renderer when <ph
name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex> | 990 'desc': '''Allows you to configure the default HTML renderer when <ph
name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex> |
1095 </ph> is installed. | 991 </ph> is installed. |
1096 The default setting is to allow the host browser do the rendering, but you | 992 The default setting is to allow the host browser do the rendering, but
you |
1097 can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex> | 993 can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3
<ex> |
1098 Google Chrome Frame</ex></ph> render HTML pages by default.''', | 994 Google Chrome Frame</ex></ph> render HTML pages by default.''', |
1099 }, | 995 }, |
1100 { | 996 { |
1101 'name': 'RenderInChromeFrameList', | 997 'name': 'RenderInChromeFrameList', |
1102 'type': 'list', | 998 'type': 'list', |
1103 'supported_on': ['chrome_frame:8-'], | 999 'supported_on': ['chrome_frame:8-'], |
1104 'annotations': { | 1000 'features': {'dynamic_refresh': 0}, |
1105 'features': {'dynamic_refresh': 0}, | 1001 'example_value': ['http://www.example.com', 'http://www.example.edu'], |
1106 'example_value': ['http://www.example.com', 'http://www.example.edu'
], | |
1107 }, | |
1108 'caption': '''Always render the following URL patterns in <ph name="PR
ODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''', | 1002 'caption': '''Always render the following URL patterns in <ph name="PR
ODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''', |
1109 'desc': '''Customize the list of URL patterns that should always be re
ndered by <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>. | 1003 'desc': '''Customize the list of URL patterns that should always be re
ndered by <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>. |
1110 | 1004 |
1111 For example patterns see http://www.chromium.org/developers/how-tos/chrome
-frame-getting-started.''', | 1005 For example patterns see http://www.chromium.org/developers/how-tos/ch
rome-frame-getting-started.''', |
1112 }, | 1006 }, |
1113 { | 1007 { |
1114 'name': 'RenderInHostList', | 1008 'name': 'RenderInHostList', |
1115 'type': 'list', | 1009 'type': 'list', |
1116 'supported_on': ['chrome_frame:8-'], | 1010 'supported_on': ['chrome_frame:8-'], |
1117 'annotations': { | 1011 'features': {'dynamic_refresh': 0}, |
1118 'features': {'dynamic_refresh': 0}, | 1012 'example_value': ['http://www.example.com', 'http://www.example.edu'], |
1119 'example_value': ['http://www.example.com', 'http://www.example.edu'
], | |
1120 }, | |
1121 'caption': '''Always render the following URL patterns in the host bro
wser''', | 1013 'caption': '''Always render the following URL patterns in the host bro
wser''', |
1122 'desc': '''Customize the list of URL patterns that should always be re
ndered by the host browser. | 1014 'desc': '''Customize the list of URL patterns that should always be re
ndered by the host browser. |
1123 For example patterns see http://www.chromium.org/developers/how-tos/chrome
-frame-getting-started.''', | 1015 For example patterns see http://www.chromium.org/developers/how-tos/ch
rome-frame-getting-started.''', |
1124 }, | 1016 }, |
1125 ], | 1017 ], |
1126 }, | 1018 }, |
1127 { | 1019 { |
1128 'name': 'ChromeFrameContentTypes', | 1020 'name': 'ChromeFrameContentTypes', |
1129 'type': 'group', | 1021 'type': 'group', |
1130 'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Fram
e</ex></ph> to handle the following content types.''', | 1022 'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Fram
e</ex></ph> to handle the following content types.''', |
1131 'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</
ex></ph> to handle the following content types.''', | 1023 'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</
ex></ph> to handle the following content types.''', |
1132 'policies': [ | 1024 'policies': [ |
1133 { | 1025 { |
1134 'name': 'ChromeFrameContentTypes', | 1026 'name': 'ChromeFrameContentTypes', |
1135 'type': 'list', | 1027 'type': 'list', |
1136 'supported_on': ['chrome_frame:8-'], | 1028 'supported_on': ['chrome_frame:8-'], |
1137 'annotations': { | 1029 'features': {'dynamic_refresh': 0}, |
1138 'features': {'dynamic_refresh': 0}, | 1030 'example_value': ['text/xml', 'application/xml'], |
1139 'example_value': ['text/xml', 'application/xml'], | |
1140 }, | |
1141 'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome
Frame</ex></ph> to handle the following content types.''', | 1031 'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome
Frame</ex></ph> to handle the following content types.''', |
1142 'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Fra
me</ex></ph> to handle the following content types.''', | 1032 'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Fra
me</ex></ph> to handle the following content types.''', |
1143 }, | 1033 }, |
1144 ], | 1034 ], |
1145 }, | 1035 }, |
1146 { | 1036 { |
1147 'name': 'ChromeOsLockOnIdleSuspend', | 1037 'name': 'ChromeOsLockOnIdleSuspend', |
1148 'type': 'main', | 1038 'type': 'main', |
1149 'supported_on': ['chrome_os:0.9.79.0-'], | 1039 'supported_on': ['chrome_os:0.9.79.0-'], |
1150 'annotations': { | 1040 'features': {'dynamic_refresh': 1}, |
1151 'features': {'dynamic_refresh': 1}, | 1041 'example_value': True, |
1152 'example_value': True, | |
1153 }, | |
1154 'caption': '''Enable lock when ChromeOS devices become idle or suspended.'
'', | 1042 'caption': '''Enable lock when ChromeOS devices become idle or suspended.'
'', |
1155 'desc': '''Enable lock when ChromeOS devices become idle or suspended. | 1043 'desc': '''Enable lock when ChromeOS devices become idle or suspended. |
1156 | 1044 |
1157 If you enable this setting, users will be asked for a password to unlock C
hromeOS devices from sleep. | 1045 If you enable this setting, users will be asked for a password to unlock C
hromeOS devices from sleep. |
1158 | 1046 |
1159 If you disable this setting, users will not be asked for a password to wak
e ChromeOS devices from sleep. | 1047 If you disable this setting, users will not be asked for a password to wak
e ChromeOS devices from sleep. |
1160 | 1048 |
1161 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome OS</ex></ph>.''', | 1049 If you enable or disable this setting, users cannot change or override thi
s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome OS</ex></ph>.''', |
1162 }, | 1050 }, |
1163 ], | 1051 ], |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 'doc_example_value': { | 1094 'doc_example_value': { |
1207 'desc': '''Caption text of the field 'example value' in the summary chart
of a policy in the generated documentation''', | 1095 'desc': '''Caption text of the field 'example value' in the summary chart
of a policy in the generated documentation''', |
1208 'text': '''Example value:''' | 1096 'text': '''Example value:''' |
1209 }, | 1097 }, |
1210 'doc_intro': { | 1098 'doc_intro': { |
1211 'desc': '''Introduction text for the generated policy documentation''', | 1099 'desc': '''Introduction text for the generated policy documentation''', |
1212 'text': '''This is the list of policies that <ph name="PRODUCT_NAME">$1<ex
>Google Chrome</ex></ph> respects. | 1100 'text': '''This is the list of policies that <ph name="PRODUCT_NAME">$1<ex
>Google Chrome</ex></ph> respects. |
1213 | 1101 |
1214 You don't need to change these settings by hand! You can download easy-to
-use templates from | 1102 You don't need to change these settings by hand! You can download easy-to
-use templates from |
1215 <ph name="POLICY_TEMPLATE_DOWNLOAD_URL">$5<ex> | 1103 <ph name="POLICY_TEMPLATE_DOWNLOAD_URL">$5<ex> |
1216 http://www.chromium.org/administrators/policy-templates</ex></ph>. | 1104 http://www.chromium.org/administrators/policy-templates</ex></ph>. |
1217 | 1105 |
1218 The list of supported policies is the same for Chromium and Google Chrome,
but their Windows registry locations differ. | 1106 The list of supported policies is the same for Chromium and Google Chrome,
but their Windows registry locations differ. |
1219 | 1107 |
1220 It starts with <ph name="CHROMIUM_KEY">Software\Policies\Chromium</ph> for
Chromium policies and with <ph name="GOOGLE_CHROME_KEY">Software\Policies\Googl
e\Chrome</ph> for Google Chrome policies.''' | 1108 It starts with <ph name="CHROMIUM_KEY">Software\Policies\Chromium</ph> for
Chromium policies and with <ph name="GOOGLE_CHROME_KEY">Software\Policies\Googl
e\Chrome</ph> for Google Chrome policies.''' |
1221 }, | 1109 }, |
1222 'doc_back_to_top': { | 1110 'doc_back_to_top': { |
1223 'desc': '''Text of a link in the generated policy documentation, that take
s the user to the top of the page''', | 1111 'desc': '''Text of a link in the generated policy documentation, that take
s the user to the top of the page''', |
1224 'text': '''Back to top''' | 1112 'text': '''Back to top''' |
1225 }, | 1113 }, |
1226 'doc_supported': { | 1114 'doc_supported': { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1258 { | 1146 { |
1259 'key': '$4', | 1147 'key': '$4', |
1260 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' | 1148 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' |
1261 }, | 1149 }, |
1262 { | 1150 { |
1263 'key': '$5', | 1151 'key': '$5', |
1264 'value': 'http://www.chromium.org/administrators/policy-templates' | 1152 'value': 'http://www.chromium.org/administrators/policy-templates' |
1265 }, | 1153 }, |
1266 ] | 1154 ] |
1267 } | 1155 } |
OLD | NEW |