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

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

Issue 2104663003: Prepare ChromeVox for webstore release. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix key maps. 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",
(...skipping 13 matching lines...) Expand all
24 "storage", 24 "storage",
25 "tabs", 25 "tabs",
26 "tts", 26 "tts",
27 "virtualKeyboardPrivate", 27 "virtualKeyboardPrivate",
28 "<all_urls>" 28 "<all_urls>"
29 ], 29 ],
30 "content_scripts": [ 30 "content_scripts": [
31 { 31 {
32 "matches": [ "<all_urls>" ], 32 "matches": [ "<all_urls>" ],
33 "exclude_globs": [ 33 "exclude_globs": [
34 {% if is_webstore is not defined %}
34 "chrome-extension://*", 35 "chrome-extension://*",
35 "chrome://*", 36 "chrome://*",
36 "https://accounts.google.com/embedded/setup/chromeos*", 37 "https://accounts.google.com/embedded/setup/chromeos*",
37 "https://talkgadget.google.com/hangouts*" 38 "https://talkgadget.google.com/hangouts*"
39 {% endif %}
38 ], 40 ],
39 "all_frames": true, 41 "all_frames": true,
40 "js": [ 42 "js": [
41 {% if is_js_compressed == '1' %} 43 {% if is_js_compressed == '1' %}
42 "chromeVoxChromePageScript.js", 44 "chromeVoxChromePageScript.js",
43 "chromeVox2ChromePageScript.js" 45 "chromeVox2ChromePageScript.js"
44 {% else %} 46 {% else %}
45 "closure/closure_preinit.js", 47 "closure/closure_preinit.js",
46 "closure/base.js", 48 "closure/base.js",
47 "deps.js", 49 "deps.js",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } 95 }
94 }, 96 },
95 "options_page": "chromevox/background/options.html", 97 "options_page": "chromevox/background/options.html",
96 "default_locale": "en", 98 "default_locale": "en",
97 "icons": { 99 "icons": {
98 "16": "images/chromevox-16.png", 100 "16": "images/chromevox-16.png",
99 "48": "images/chromevox-48.png", 101 "48": "images/chromevox-48.png",
100 "128": "images/chromevox-128.png" 102 "128": "images/chromevox-128.png"
101 } 103 }
102 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698