OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 [ | 5 [ |
6 { | 6 { |
7 "namespace": "privacy", | 7 "namespace": "privacy", |
8 "description": "Use the <code>chrome.privacy</code> API to control usage of
the features in Chrome that can affect a user's privacy. This API relies on the
<a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge
tting and setting Chrome's configuration.", | 8 "description": "Use the <code>chrome.privacy</code> API to control usage of
the features in Chrome that can affect a user's privacy. This API relies on the
<a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge
tting and setting Chrome's configuration.", |
9 "properties": { | 9 "properties": { |
10 "network": { | 10 "network": { |
(...skipping 16 matching lines...) Expand all Loading... |
27 "alternateErrorPagesEnabled": { | 27 "alternateErrorPagesEnabled": { |
28 "$ref": "types.ChromeSetting", | 28 "$ref": "types.ChromeSetting", |
29 "value": ["alternateErrorPagesEnabled", {"type":"boolean"}], | 29 "value": ["alternateErrorPagesEnabled", {"type":"boolean"}], |
30 "description": "If enabled, Chrome uses a web service to help resolv
e navigation errors. This preference's value is a boolean, defaulting to <code>t
rue</code>." | 30 "description": "If enabled, Chrome uses a web service to help resolv
e navigation errors. This preference's value is a boolean, defaulting to <code>t
rue</code>." |
31 }, | 31 }, |
32 "autofillEnabled": { | 32 "autofillEnabled": { |
33 "$ref": "types.ChromeSetting", | 33 "$ref": "types.ChromeSetting", |
34 "value": ["autofillEnabled", {"type":"boolean"}], | 34 "value": ["autofillEnabled", {"type":"boolean"}], |
35 "description": "If enabled, Chrome offers to automatically fill in f
orms. This preference's value is a boolean, defaulting to <code>true</code>." | 35 "description": "If enabled, Chrome offers to automatically fill in f
orms. This preference's value is a boolean, defaulting to <code>true</code>." |
36 }, | 36 }, |
| 37 "passwordSavingEnabled": { |
| 38 "$ref": "types.ChromeSetting", |
| 39 "value": ["passwordSavingEnabled", {"type":"boolean"}], |
| 40 "description": "If enabled, the password manager will ask if you wan
t to save passwords. This preference's value is a boolean, defaulting to <code>t
rue</code>." |
| 41 }, |
37 "safeBrowsingEnabled": { | 42 "safeBrowsingEnabled": { |
38 "$ref": "types.ChromeSetting", | 43 "$ref": "types.ChromeSetting", |
39 "value": ["safeBrowsingEnabled", {"type":"boolean"}], | 44 "value": ["safeBrowsingEnabled", {"type":"boolean"}], |
40 "description": "If enabled, Chrome does its best to protect you from
phishing and malware. This preference's value is a boolean, defaulting to <code
>true</code>." | 45 "description": "If enabled, Chrome does its best to protect you from
phishing and malware. This preference's value is a boolean, defaulting to <code
>true</code>." |
41 }, | 46 }, |
42 "searchSuggestEnabled": { | 47 "searchSuggestEnabled": { |
43 "$ref": "types.ChromeSetting", | 48 "$ref": "types.ChromeSetting", |
44 "value": ["searchSuggestEnabled", {"type":"boolean"}], | 49 "value": ["searchSuggestEnabled", {"type":"boolean"}], |
45 "description": "If enabled, Chrome sends the text you type into the
Omnibox to your default search engine, which provides predictions of websites an
d searches that are likely completions of what you've typed so far. This prefere
nce's value is a boolean, defaulting to <code>true</code>." | 50 "description": "If enabled, Chrome sends the text you type into the
Omnibox to your default search engine, which provides predictions of websites an
d searches that are likely completions of what you've typed so far. This prefere
nce's value is a boolean, defaulting to <code>true</code>." |
46 }, | 51 }, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "$ref": "types.ChromeSetting", | 85 "$ref": "types.ChromeSetting", |
81 "value": ["protectedContentEnabled", {"type":"boolean"}], | 86 "value": ["protectedContentEnabled", {"type":"boolean"}], |
82 "description": "<strong>Available on Windows and ChromeOS only</stro
ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte
d content. The value of this preference is of type boolean, and the default valu
e is <code>true</code>.", | 87 "description": "<strong>Available on Windows and ChromeOS only</stro
ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte
d content. The value of this preference is of type boolean, and the default valu
e is <code>true</code>.", |
83 "platforms": ["windows", "cros", "cros touch"] | 88 "platforms": ["windows", "cros", "cros touch"] |
84 } | 89 } |
85 } | 90 } |
86 } | 91 } |
87 } | 92 } |
88 } | 93 } |
89 ] | 94 ] |
OLD | NEW |