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

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

Issue 2054473003: Implement update notifications for ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 "commands.accessibility", 19 "commands.accessibility",
20 "commandLinePrivate", 20 "commandLinePrivate",
21 "experimental", 21 "experimental",
22 "history", 22 "history",
23 "notifications",
23 "storage", 24 "storage",
24 "tabs", 25 "tabs",
25 "tts", 26 "tts",
26 "virtualKeyboardPrivate", 27 "virtualKeyboardPrivate",
27 "<all_urls>" 28 "<all_urls>"
28 ], 29 ],
29 "content_scripts": [ 30 "content_scripts": [
30 { 31 {
31 "matches": [ "<all_urls>" ], 32 "matches": [ "<all_urls>" ],
32 "exclude_globs": [ 33 "exclude_globs": [
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 } 93 }
93 }, 94 },
94 "options_page": "chromevox/background/options.html", 95 "options_page": "chromevox/background/options.html",
95 "default_locale": "en", 96 "default_locale": "en",
96 "icons": { 97 "icons": {
97 "16": "images/chromevox-16.png", 98 "16": "images/chromevox-16.png",
98 "48": "images/chromevox-48.png", 99 "48": "images/chromevox-48.png",
99 "128": "images/chromevox-128.png" 100 "128": "images/chromevox-128.png"
100 } 101 }
101 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698