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

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: Fix Ozone by only activating panel when fullscreen Created 4 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
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "chromevox/background/keymaps/next_keymap.json", 55 "chromevox/background/keymaps/next_keymap.json",
56 "chromevox/injected/api.js", 56 "chromevox/injected/api.js",
57 "chromevox/injected/api_util.js", 57 "chromevox/injected/api_util.js",
58 "chromevox/injected/mathjax.js", 58 "chromevox/injected/mathjax.js",
59 "chromevox/injected/mathjax_external_util.js" 59 "chromevox/injected/mathjax_external_util.js"
60 ], 60 ],
61 "automation": { 61 "automation": {
62 "desktop": true 62 "desktop": true
63 }, 63 },
64 "commands": { 64 "commands": {
65 "nextElement": { 65 "nextObject": {
66 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", 66 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__",
67 "suggested_key": { 67 "suggested_key": {
68 "default": "Alt+Shift+Right" 68 "default": "Alt+Shift+Right"
69 } 69 }
70 }, 70 },
71 "previousElement": { 71 "previousObject": {
72 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__", 72 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__",
73 "suggested_key": { 73 "suggested_key": {
74 "default": "Alt+Shift+Left" 74 "default": "Alt+Shift+Left"
75 } 75 }
76 }, 76 },
77 "doDefault": { 77 "performDefaultAction": {
78 "description": "__MSG_CHROMEVOX_PERFORM_DEFAULT_ACTION__", 78 "description": "__MSG_CHROMEVOX_PERFORM_DEFAULT_ACTION__",
79 "suggested_key": { 79 "suggested_key": {
80 "default": "Alt+Shift+Space" 80 "default": "Alt+Shift+Space"
81 } 81 }
82 }, 82 },
83 "toggleChromeVoxVersion": { 83 "toggleChromeVoxVersion": {
84 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__", 84 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__",
85 "suggested_key": { 85 "suggested_key": {
86 "default": "Alt+Shift+Q" 86 "default": "Alt+Shift+Q"
87 } 87 }
88 }, 88 },
89 "continuousRead": { 89 "readFromHere": {
90 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__", 90 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__",
91 "suggested_key": { 91 "suggested_key": {
92 "default": "Alt+Shift+R" 92 "default": "Alt+Shift+R"
93 } 93 }
94 } 94 }
95 }, 95 },
96 "options_page": "chromevox/background/options.html", 96 "options_page": "chromevox/background/options.html",
97 "default_locale": "en", 97 "default_locale": "en",
98 "icons": { 98 "icons": {
99 "16": "images/chromevox-16.png", 99 "16": "images/chromevox-16.png",
100 "48": "images/chromevox-48.png", 100 "48": "images/chromevox-48.png",
101 "128": "images/chromevox-128.png" 101 "128": "images/chromevox-128.png"
102 } 102 }
103 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698