| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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": "accessibilityFeatures", | 7 "namespace": "accessibilityFeatures", |
| 8 "description": "Use the <code>chrome.accessibilityFeatures</code> API to man
age Chrome's accessibility features. This API relies on the <a href='types#Chrom
eSetting'>ChromeSetting prototype of the type API</a> for getting and setting in
dividual accessibility features. In order to get feature states the extension mu
st request <code>accessibilityFeatures.read</code> permission. For modifying fea
ture state, the extension needs <code>accessibilityFeatures.modify</code> permis
sion. Note that <code>accessibilityFeatures.modify</code> does not imply <code>a
ccessibilityFeatures.read</code> permission.", | 8 "description": "Use the <code>chrome.accessibilityFeatures</code> API to man
age Chrome's accessibility features. This API relies on the <a href='types#Chrom
eSetting'>ChromeSetting prototype of the type API</a> for getting and setting in
dividual accessibility features. In order to get feature states the extension mu
st request <code>accessibilityFeatures.read</code> permission. For modifying fea
ture state, the extension needs <code>accessibilityFeatures.modify</code> permis
sion. Note that <code>accessibilityFeatures.modify</code> does not imply <code>a
ccessibilityFeatures.read</code> permission.", |
| 9 "compiler_options": { "use_movable_types": true }, | |
| 10 "properties": { | 9 "properties": { |
| 11 "spokenFeedback": { | 10 "spokenFeedback": { |
| 12 "$ref": "types.ChromeSetting", | 11 "$ref": "types.ChromeSetting", |
| 13 "description": "<p><strong>ChromeOS only.</strong></p><p>Spoken feedback
(text-to-speech). The value indicates whether the feature is enabled or not. <c
ode>get()</code> requires <code>accessibilityFeatures.read</code> permission. <c
ode>set()</code> and <code>clear()</code> require <code>accessibilityFeatures.mo
dify</code> permission.</p>", | 12 "description": "<p><strong>ChromeOS only.</strong></p><p>Spoken feedback
(text-to-speech). The value indicates whether the feature is enabled or not. <c
ode>get()</code> requires <code>accessibilityFeatures.read</code> permission. <c
ode>set()</code> and <code>clear()</code> require <code>accessibilityFeatures.mo
dify</code> permission.</p>", |
| 14 "value": ["spokenFeedback", {"type": "boolean"}], | 13 "value": ["spokenFeedback", {"type": "boolean"}], |
| 15 "platforms": ["chromeos"] | 14 "platforms": ["chromeos"] |
| 16 }, | 15 }, |
| 17 "largeCursor": { | 16 "largeCursor": { |
| 18 "$ref": "types.ChromeSetting", | 17 "$ref": "types.ChromeSetting", |
| 19 "description": "<p><strong>ChromeOS only.</strong></p><p>Enlarged cursor
. The value indicates whether the feature is enabled or not. <code>get()</code>
requires <code>accessibilityFeatures.read</code> permission. <code>set()</code>
and <code>clear()</code> require <code>accessibilityFeatures.modify</code> permi
ssion.</p>", | 18 "description": "<p><strong>ChromeOS only.</strong></p><p>Enlarged cursor
. The value indicates whether the feature is enabled or not. <code>get()</code>
requires <code>accessibilityFeatures.read</code> permission. <code>set()</code>
and <code>clear()</code> require <code>accessibilityFeatures.modify</code> permi
ssion.</p>", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 }, { | 94 }, { |
| 96 "description": "Images are not animated.", | 95 "description": "Images are not animated.", |
| 97 "name": "none" | 96 "name": "none" |
| 98 }] | 97 }] |
| 99 } | 98 } |
| 100 ] | 99 ] |
| 101 } | 100 } |
| 102 } | 101 } |
| 103 } | 102 } |
| 104 ] | 103 ] |
| OLD | NEW |