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

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: Finish initial implementation for Chrome OS, address feedback 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",
11 {% endif %} 11 {% endif %}
12 "background": { 12 "background": {
13 "page": "cvox2/background/background.html" 13 "page": "cvox2/background/background.html"
14 }, 14 },
15 "permissions": [ 15 "permissions": [
16 {% if is_chromeos == '1' %}
17 "accessibilityFeatures",
18 {% endif %}
16 "accessibilityPrivate", 19 "accessibilityPrivate",
17 "bookmarks", 20 "bookmarks",
18 "brailleDisplayPrivate", 21 "brailleDisplayPrivate",
19 "commands.accessibility", 22 "commands.accessibility",
20 "commandLinePrivate", 23 "commandLinePrivate",
21 "experimental", 24 "experimental",
22 "history", 25 "history",
23 "storage", 26 "storage",
24 "tabs", 27 "tabs",
25 "tts", 28 "tts",
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 "description": "__MSG_CHROMEVOX_SHOW_CONTEXT_MENU__", 295 "description": "__MSG_CHROMEVOX_SHOW_CONTEXT_MENU__",
293 "suggested_key": { 296 "suggested_key": {
294 "chromeos": "Search+Ctrl+Space" 297 "chromeos": "Search+Ctrl+Space"
295 } 298 }
296 } 299 }
297 {% endif %} 300 {% endif %}
298 }, 301 },
299 "options_page": "chromevox/background/options.html", 302 "options_page": "chromevox/background/options.html",
300 "default_locale": "en" 303 "default_locale": "en"
301 } 304 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698