Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: chrome/browser/resources/chromeos/switch_access/manifest.json.jinja2

Issue 2690063004: Tried to add keyboard shortcuts to trigger switch access commands. Maybe missing a permission.
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/switch_access/switch_access.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 {% if key is defined %} 2 {% if key is defined %}
3 "key": "{{key}}", 3 "key": "{{key}}",
4 {% endif %} 4 {% endif %}
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "name": "TODO: Translated Switch access name", 6 "name": "TODO: Translated Switch access name",
7 "version": "{{set_version}}", 7 "version": "{{set_version}}",
8 "description": "TODO: Translated Switch access description", 8 "description": "TODO: Translated Switch access description",
9 {% if is_guest_manifest == '1' %} 9 {% if is_guest_manifest == '1' %}
10 "incognito": "split", 10 "incognito": "split",
11 {% endif %} 11 {% endif %}
12 "background": { 12 "background": {
13 "scripts": [ 13 "scripts": [
14 "switch_access.js" 14 "switch_access.js"
15 ] 15 ]
16 }, 16 },
17 "permissions": [ 17 "permissions": [
18 "accessibilityPrivate" 18 "accessibilityPrivate",
19 "commands.accessibility"
19 ], 20 ],
20 "automation": { 21 "automation": {
21 "desktop": true 22 "desktop": true
23 },
24 "commands": {
25 "previousItem": {
26 "description": "Move to the previous item",
27 "suggested_key": {
28 "default": "Alt+B",
29 "chromeos": "Ctrl+Shift+1"
30 }
31 },
32 "nextItem": {
33 "description": "Move to the next item",
34 "suggested_key": {
35 "default": "Alt+N",
36 "chromeos": "Ctrl+Shift+2"
37 }
38 },
39 "selectItem": {
40 "description": "Select the highlighted item",
41 "suggested_key": {
42 "default": "Alt+M",
43 "chromeos": "Ctrl+Shift+U"
44 }
45 }
22 } 46 }
23 } 47 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/switch_access/switch_access.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698