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

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

Issue 586103004: Implement ChromeVox next/previous line, link, and heading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Created 6 years, 3 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
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": "ChromeVox", 6 "name": "ChromeVox",
7 "version": "{{set_version}}", 7 "version": "{{set_version}}",
8 "description": "ChromeVox - Giving Voice to Chrome.", 8 "description": "ChromeVox - Giving Voice to Chrome.",
9 {% if is_guest_manifest == '1' %} 9 {% if is_guest_manifest == '1' %}
10 "incognito": "split", 10 "incognito": "split",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "chromevox/injected/mathjax_external_util.js" 50 "chromevox/injected/mathjax_external_util.js"
51 ], 51 ],
52 {% if use_chromevox_next == '1' %} 52 {% if use_chromevox_next == '1' %}
53 "automation": { 53 "automation": {
54 "desktop": true 54 "desktop": true
55 }, 55 },
56 "commands": { 56 "commands": {
57 "nextElement": { 57 "nextElement": {
58 "description": "Moves to the next element", 58 "description": "Moves to the next element",
59 "suggested_key": { 59 "suggested_key": {
60 "chromeos": "Search+Shift+Right" 60 "chromeos": "Search+Right"
61 } 61 }
62 }, 62 },
63 "previousElement": { 63 "previousElement": {
64 "description": "Moves to the previous element", 64 "description": "Moves to the previous element",
65 "suggested_key": { 65 "suggested_key": {
66 "chromeos": "Search+Shift+Left" 66 "chromeos": "Search+Left"
67 } 67 }
68 }, 68 },
69 "nextLine": { 69 "nextLine": {
70 "description": "Moves to the next line", 70 "description": "__MSG_CHROMEVOX_NEXT_LINE__",
71 "suggested_key": { 71 "suggested_key": {
72 "chromeos": "Search+Shift+Down" 72 "chromeos": "Search+Down"
73 } 73 }
74 }, 74 },
75 "previousLine": { 75 "previousLine": {
76 "description": "Moves to the previous line", 76 "description": "__MSG_CHROMEVOX_PREVIOUS_LINE__",
77 "suggested_key": { 77 "suggested_key": {
78 "chromeos": "Search+Shift+Up" 78 "chromeos": "Search+Up"
79 }
80 },
81 "nextLink": {
82 "description": "__MSG_CHROMEVOX_NEXT_LINK__",
83 "suggested_key": {
84 "chromeos": "Search+L"
85 }
86 },
87 "previousLink": {
88 "description": "__MSG_CHROMEVOX_PREVIOUS_LINK__",
89 "suggested_key": {
90 "chromeos": "Search+Shift+L"
91 }
92 },
93 "nextHeading": {
94 "description": "Moves to the next heading",
95 "suggested_key": {
96 "chromeos": "Search+H"
97 }
98 },
99 "previousHeading": {
100 "description": "Moves to the previous heading",
101 "suggested_key": {
102 "chromeos": "Search+Shift+H"
79 } 103 }
80 } 104 }
81 }, 105 },
82 {% endif %} 106 {% endif %}
83 "options_page": "chromevox/background/options.html", 107 "options_page": "chromevox/background/options.html",
84 "default_locale": "en" 108 "default_locale": "en"
85 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698