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

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

Issue 1003283002: Enable chrome.automation.getDesktop on all aura platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actions. Created 5 years, 9 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",
11 {% endif %} 11 {% endif %}
12 "background": { 12 "background": {
13 {% if is_chromevox_classic == '1' %}
14 "page": "chromevox/background/background.html"
15 {% else %}
16 "page": "cvox2/background/background.html" 13 "page": "cvox2/background/background.html"
17 {% endif %}
18 }, 14 },
19 "permissions": [ 15 "permissions": [
20 "accessibilityPrivate", 16 "accessibilityPrivate",
21 "bookmarks", 17 "bookmarks",
22 "brailleDisplayPrivate", 18 "brailleDisplayPrivate",
23 "commands.accessibility", 19 "commands.accessibility",
24 "commandLinePrivate", 20 "commandLinePrivate",
25 "experimental", 21 "experimental",
26 "history", 22 "history",
27 "storage", 23 "storage",
(...skipping 21 matching lines...) Expand all
49 {% endif %} 45 {% endif %}
50 ] 46 ]
51 } 47 }
52 ], 48 ],
53 "web_accessible_resources": [ 49 "web_accessible_resources": [
54 "chromevox/injected/api.js", 50 "chromevox/injected/api.js",
55 "chromevox/injected/api_util.js", 51 "chromevox/injected/api_util.js",
56 "chromevox/injected/mathjax.js", 52 "chromevox/injected/mathjax.js",
57 "chromevox/injected/mathjax_external_util.js" 53 "chromevox/injected/mathjax_external_util.js"
58 ], 54 ],
59 {% if is_chromevox_classic == '0' %}
60 "automation": { 55 "automation": {
61 "desktop": true 56 "desktop": true
62 }, 57 },
58 {% if is_chromevox_classic == '0' %}
63 "commands": { 59 "commands": {
64 "nextElement": { 60 "nextElement": {
65 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", 61 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__",
66 "suggested_key": { 62 "suggested_key": {
67 "chromeos": "Search+Right" 63 "chromeos": "Search+Right"
68 } 64 }
69 }, 65 },
70 "previousElement": { 66 "previousElement": {
71 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__", 67 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__",
72 "suggested_key": { 68 "suggested_key": {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__", 157 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__",
162 "suggested_key": { 158 "suggested_key": {
163 "chromeos": "Search+R" 159 "chromeos": "Search+R"
164 } 160 }
165 } 161 }
166 }, 162 },
167 {% endif %} 163 {% endif %}
168 "options_page": "chromevox/background/options.html", 164 "options_page": "chromevox/background/options.html",
169 "default_locale": "en" 165 "default_locale": "en"
170 } 166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698