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

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

Issue 2121413002: Support selection and copying over non-editable content in ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test. Created 4 years, 5 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 "page": "cvox2/background/background.html" 13 "page": "cvox2/background/background.html"
14 }, 14 },
15 "permissions": [ 15 "permissions": [
16 "accessibilityPrivate", 16 "accessibilityPrivate",
17 "bookmarks", 17 "bookmarks",
18 "brailleDisplayPrivate", 18 "brailleDisplayPrivate",
19 "clipboardRead",
19 "commands.accessibility", 20 "commands.accessibility",
20 "commandLinePrivate", 21 "commandLinePrivate",
21 "experimental", 22 "experimental",
22 "history", 23 "history",
23 "notifications", 24 "notifications",
24 "storage", 25 "storage",
25 "tabs", 26 "tabs",
26 "tts", 27 "tts",
27 "virtualKeyboardPrivate", 28 "virtualKeyboardPrivate",
28 "<all_urls>" 29 "<all_urls>"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 } 97 }
97 }, 98 },
98 "options_page": "chromevox/background/options.html", 99 "options_page": "chromevox/background/options.html",
99 "default_locale": "en", 100 "default_locale": "en",
100 "icons": { 101 "icons": {
101 "16": "images/chromevox-16.png", 102 "16": "images/chromevox-16.png",
102 "48": "images/chromevox-48.png", 103 "48": "images/chromevox-48.png",
103 "128": "images/chromevox-128.png" 104 "128": "images/chromevox-128.png"
104 } 105 }
105 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698