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

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

Issue 2495373005: Record ChromeVox metrics (Closed)
Patch Set: Reword Accessibility.CrosChromeVoxNext description Created 4 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 "accessibilityPrivate", 16 "accessibilityPrivate",
17 "bookmarks", 17 "bookmarks",
18 "brailleDisplayPrivate", 18 "brailleDisplayPrivate",
19 "clipboardRead", 19 "clipboardRead",
20 "commands.accessibility", 20 "commands.accessibility",
21 "commandLinePrivate", 21 "commandLinePrivate",
22 "experimental", 22 "experimental",
23 "history", 23 "history",
24 "metricsPrivate",
24 "notifications", 25 "notifications",
25 "storage", 26 "storage",
26 "tabs", 27 "tabs",
27 "tts", 28 "tts",
28 "virtualKeyboardPrivate", 29 "virtualKeyboardPrivate",
29 "<all_urls>" 30 "<all_urls>"
30 ], 31 ],
31 "content_scripts": [ 32 "content_scripts": [
32 { 33 {
33 "matches": [ "<all_urls>" ], 34 "matches": [ "<all_urls>" ],
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 98 }
98 }, 99 },
99 "options_page": "chromevox/background/options.html", 100 "options_page": "chromevox/background/options.html",
100 "default_locale": "en", 101 "default_locale": "en",
101 "icons": { 102 "icons": {
102 "16": "images/chromevox-16.png", 103 "16": "images/chromevox-16.png",
103 "48": "images/chromevox-48.png", 104 "48": "images/chromevox-48.png",
104 "128": "images/chromevox-128.png" 105 "128": "images/chromevox-128.png"
105 } 106 }
106 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698