| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "namespace": "experimental.privacy", | 3 "namespace": "privacy", |
| 4 "dependencies": [ "types" ], | 4 "dependencies": [ "types" ], |
| 5 "properties": { | 5 "properties": { |
| 6 "network": { | 6 "network": { |
| 7 "type": "object", | 7 "type": "object", |
| 8 "value": {}, | 8 "value": {}, |
| 9 "description": "Settings that influence Chrome's handling of network con
nections in general.", | 9 "description": "Settings that influence Chrome's handling of network con
nections in general.", |
| 10 "properties": { | 10 "properties": { |
| 11 "networkPredictionEnabled": { | 11 "networkPredictionEnabled": { |
| 12 "$ref": "ChromeSetting", | 12 "$ref": "ChromeSetting", |
| 13 "value": ["networkPredictionEnabled", {"type":"boolean"}], | 13 "value": ["networkPredictionEnabled", {"type":"boolean"}], |
| (...skipping 14 matching lines...) Expand all Loading... |
| 28 "autofillEnabled": { | 28 "autofillEnabled": { |
| 29 "$ref": "ChromeSetting", | 29 "$ref": "ChromeSetting", |
| 30 "value": ["autofillEnabled", {"type":"boolean"}], | 30 "value": ["autofillEnabled", {"type":"boolean"}], |
| 31 "description": "If enabled, Chrome offers to automatically fill in f
orms. This preference's value is a boolean, defaulting to <code>true</code>." | 31 "description": "If enabled, Chrome offers to automatically fill in f
orms. This preference's value is a boolean, defaulting to <code>true</code>." |
| 32 }, | 32 }, |
| 33 "instantEnabled": { | 33 "instantEnabled": { |
| 34 "$ref": "ChromeSetting", | 34 "$ref": "ChromeSetting", |
| 35 "value": ["instantEnabled", {"type":"boolean"}], | 35 "value": ["instantEnabled", {"type":"boolean"}], |
| 36 "description": "If enabled, Chrome automatically performs and displa
ys search requests for text you type into the Omnibox as you type it. This prefe
rence's value is a boolean, defaulting to <code>true</code>." | 36 "description": "If enabled, Chrome automatically performs and displa
ys search requests for text you type into the Omnibox as you type it. This prefe
rence's value is a boolean, defaulting to <code>true</code>." |
| 37 }, | 37 }, |
| 38 "metricsReportingEnabled": { | |
| 39 "$ref": "ChromeSetting", | |
| 40 "value": ["metricsReportingEnabled", {"type":"boolean"}], | |
| 41 "description": "If enabled, Chrome automatically sends usage statist
ics and crash reports to Google. This preference's value is a boolean, defaultin
g to <code>false</code>." | |
| 42 }, | |
| 43 "safeBrowsingEnabled": { | 38 "safeBrowsingEnabled": { |
| 44 "$ref": "ChromeSetting", | 39 "$ref": "ChromeSetting", |
| 45 "value": ["safeBrowsingEnabled", {"type":"boolean"}], | 40 "value": ["safeBrowsingEnabled", {"type":"boolean"}], |
| 46 "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 "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>." |
| 47 }, | 42 }, |
| 48 "searchSuggestEnabled": { | 43 "searchSuggestEnabled": { |
| 49 "$ref": "ChromeSetting", | 44 "$ref": "ChromeSetting", |
| 50 "value": ["searchSuggestEnabled", {"type":"boolean"}], | 45 "value": ["searchSuggestEnabled", {"type":"boolean"}], |
| 51 "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 "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>." |
| 52 }, | 47 }, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 75 "referrersEnabled": { | 70 "referrersEnabled": { |
| 76 "$ref": "ChromeSetting", | 71 "$ref": "ChromeSetting", |
| 77 "value": ["referrersEnabled", {"type":"boolean"}], | 72 "value": ["referrersEnabled", {"type":"boolean"}], |
| 78 "description": "If enabled, Chrome sends <code>referer</code> header
s with your requests. Yes, the name of this preference doesn't match the misspel
led header. No, we're not going to change it. The value of this preference is of
type boolean, and the default value is <code>true</code>." | 73 "description": "If enabled, Chrome sends <code>referer</code> header
s with your requests. Yes, the name of this preference doesn't match the misspel
led header. No, we're not going to change it. The value of this preference is of
type boolean, and the default value is <code>true</code>." |
| 79 } | 74 } |
| 80 } | 75 } |
| 81 } | 76 } |
| 82 } | 77 } |
| 83 } | 78 } |
| 84 ] | 79 ] |
| OLD | NEW |