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

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

Issue 1277183003: Add ChromeVox panel and implement caption display functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN build Created 5 years, 1 month 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 } 84 }
85 }, 85 },
86 "continuousRead": { 86 "continuousRead": {
87 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__", 87 "description": "__MSG_CHROMEVOX_READ_FROM_HERE__",
88 "suggested_key": { 88 "suggested_key": {
89 "default": "Alt+Shift+R" 89 "default": "Alt+Shift+R"
90 } 90 }
91 } 91 }
92 }, 92 },
93 "options_page": "chromevox/background/options.html", 93 "options_page": "chromevox/background/options.html",
94 "default_locale": "en" 94 "default_locale": "en",
95 "icons": {
96 "16": "images/chromevox-16.png",
97 "48": "images/chromevox-48.png",
98 "128": "images/chromevox-128.png"
99 }
95 } 100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698