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

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

Issue 1561773002: Implement ChromeVox Next menus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@panel_view_type
Patch Set: Address feedback Created 4 years, 11 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": "__MSG_CHROMEVOX_NAME__", 6 "name": "__MSG_CHROMEVOX_NAME__",
7 "version": "{{set_version}}", 7 "version": "{{set_version}}",
8 "description": "__MSG_CHROMEVOX_DESCRIPTION__", 8 "description": "__MSG_CHROMEVOX_DESCRIPTION__",
9 {% if is_guest_manifest == '1' %} 9 {% if is_guest_manifest == '1' %}
10 "incognito": "split", 10 "incognito": "split",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "web_accessible_resources": [ 53 "web_accessible_resources": [
54 "chromevox/injected/api.js", 54 "chromevox/injected/api.js",
55 "chromevox/injected/api_util.js", 55 "chromevox/injected/api_util.js",
56 "chromevox/injected/mathjax.js", 56 "chromevox/injected/mathjax.js",
57 "chromevox/injected/mathjax_external_util.js" 57 "chromevox/injected/mathjax_external_util.js"
58 ], 58 ],
59 "automation": { 59 "automation": {
60 "desktop": true 60 "desktop": true
61 }, 61 },
62 "commands": { 62 "commands": {
63 "nextElement": { 63 "nextObject": {
64 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", 64 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__",
65 "suggested_key": { 65 "suggested_key": {
66 "default": "Alt+Shift+Right" 66 "default": "Alt+Shift+Right"
67 } 67 }
68 }, 68 },
69 "previousElement": { 69 "previousObject": {
70 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__", 70 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__",
71 "suggested_key": { 71 "suggested_key": {
72 "default": "Alt+Shift+Left" 72 "default": "Alt+Shift+Left"
73 } 73 }
74 }, 74 },
75 "doDefault": { 75 "doDefault": {
76 "description": "__MSG_CHROMEVOX_PERFORM_DEFAULT_ACTION__", 76 "description": "__MSG_CHROMEVOX_PERFORM_DEFAULT_ACTION__",
77 "suggested_key": { 77 "suggested_key": {
78 "default": "Alt+Shift+Space" 78 "default": "Alt+Shift+Space"
79 } 79 }
(...skipping 12 matching lines...) Expand all
92 } 92 }
93 }, 93 },
94 "options_page": "chromevox/background/options.html", 94 "options_page": "chromevox/background/options.html",
95 "default_locale": "en", 95 "default_locale": "en",
96 "icons": { 96 "icons": {
97 "16": "images/chromevox-16.png", 97 "16": "images/chromevox-16.png",
98 "48": "images/chromevox-48.png", 98 "48": "images/chromevox-48.png",
99 "128": "images/chromevox-128.png" 99 "128": "images/chromevox-128.png"
100 } 100 }
101 } 101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698