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

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

Issue 1138773006: Fix webstore extension reading in views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 ], 48 ],
49 "web_accessible_resources": [ 49 "web_accessible_resources": [
50 "chromevox/injected/api.js", 50 "chromevox/injected/api.js",
51 "chromevox/injected/api_util.js", 51 "chromevox/injected/api_util.js",
52 "chromevox/injected/mathjax.js", 52 "chromevox/injected/mathjax.js",
53 "chromevox/injected/mathjax_external_util.js" 53 "chromevox/injected/mathjax_external_util.js"
54 ], 54 ],
55 "automation": { 55 "automation": {
56 "desktop": true 56 "desktop": true
57 }, 57 },
58 "commands": {
58 {% if is_chromevox_classic == '0' %} 59 {% if is_chromevox_classic == '0' %}
59 "commands": {
60 "nextElement": { 60 "nextElement": {
61 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", 61 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__",
62 "suggested_key": { 62 "suggested_key": {
63 "chromeos": "Search+Right" 63 "chromeos": "Search+Right"
64 } 64 }
65 }, 65 },
66 "previousElement": { 66 "previousElement": {
67 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__", 67 "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__",
68 "suggested_key": { 68 "suggested_key": {
69 "chromeos": "Search+Left" 69 "chromeos": "Search+Left"
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "suggested_key": { 272 "suggested_key": {
273 "chromeos": "Search+R" 273 "chromeos": "Search+R"
274 } 274 }
275 }, 275 },
276 "compatContinuousRead": { 276 "compatContinuousRead": {
277 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__", 277 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__",
278 "suggested_key": { 278 "suggested_key": {
279 "chromeos": "Search+Shift+R" 279 "chromeos": "Search+Shift+R"
280 } 280 }
281 } 281 }
282 {% endif %}
282 }, 283 },
283 {% endif %}
284 "options_page": "chromevox/background/options.html", 284 "options_page": "chromevox/background/options.html",
285 "default_locale": "en" 285 "default_locale": "en"
286 } 286 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698