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

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: Address comments. Created 6 years, 2 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "chromevox/injected/mathjax_external_util.js" 52 "chromevox/injected/mathjax_external_util.js"
53 ], 53 ],
54 {% if use_chromevox_next == '1' %} 54 {% if use_chromevox_next == '1' %}
55 "automation": { 55 "automation": {
56 "desktop": true 56 "desktop": true
57 }, 57 },
58 "commands": { 58 "commands": {
59 "nextElement": { 59 "nextElement": {
60 "description": "Moves to the next element", 60 "description": "Moves to the next element",
61 "suggested_key": { 61 "suggested_key": {
62 "chromeos": "Search+Shift+Right" 62 "chromeos": "Search+Right"
63 } 63 }
64 }, 64 },
65 "previousElement": { 65 "previousElement": {
66 "description": "Moves to the previous element", 66 "description": "Moves to the previous element",
67 "suggested_key": { 67 "suggested_key": {
68 "chromeos": "Search+Shift+Left" 68 "chromeos": "Search+Left"
69 } 69 }
70 }, 70 },
71 "nextLine": { 71 "nextLine": {
72 "description": "Moves to the next line", 72 "description": "__MSG_CHROMEVOX_NEXT_LINE__",
73 "suggested_key": { 73 "suggested_key": {
74 "chromeos": "Search+Shift+Down" 74 "chromeos": "Search+Down"
75 } 75 }
76 }, 76 },
77 "previousLine": { 77 "previousLine": {
78 "description": "Moves to the previous line", 78 "description": "__MSG_CHROMEVOX_PREVIOUS_LINE__",
79 "suggested_key": { 79 "suggested_key": {
80 "chromeos": "Search+Shift+Up" 80 "chromeos": "Search+Up"
81 }
82 },
83 "nextLink": {
84 "description": "__MSG_CHROMEVOX_NEXT_LINK__",
85 "suggested_key": {
86 "chromeos": "Search+L"
87 }
88 },
89 "previousLink": {
90 "description": "__MSG_CHROMEVOX_PREVIOUS_LINK__",
91 "suggested_key": {
92 "chromeos": "Search+Shift+L"
93 }
94 },
95 "nextHeading": {
96 "description": "Moves to the next heading",
97 "suggested_key": {
98 "chromeos": "Search+H"
99 }
100 },
101 "previousHeading": {
102 "description": "Moves to the previous heading",
103 "suggested_key": {
104 "chromeos": "Search+Shift+H"
81 } 105 }
82 } 106 }
83 }, 107 },
84 {% endif %} 108 {% endif %}
85 "options_page": "chromevox/background/options.html", 109 "options_page": "chromevox/background/options.html",
86 "default_locale": "en" 110 "default_locale": "en"
87 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698