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

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

Issue 1371913004: Remove unused Chromevox classic background script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 12 matching lines...) Expand all
23 "storage", 23 "storage",
24 "tabs", 24 "tabs",
25 "tts", 25 "tts",
26 "virtualKeyboardPrivate", 26 "virtualKeyboardPrivate",
27 "<all_urls>" 27 "<all_urls>"
28 ], 28 ],
29 "content_scripts": [ 29 "content_scripts": [
30 { 30 {
31 "matches": [ "<all_urls>" ], 31 "matches": [ "<all_urls>" ],
32 "exclude_globs": [ 32 "exclude_globs": [
33 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/backgro und/background.html" 33 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/ background.html"
34 ], 34 ],
35 "all_frames": true, 35 "all_frames": true,
36 "js": [ 36 "js": [
37 {% if is_js_compressed == '1' %} 37 {% if is_js_compressed == '1' %}
38 "chromeVoxChromePageScript.js" 38 "chromeVoxChromePageScript.js"
39 {% else %} 39 {% else %}
40 "closure/closure_preinit.js", 40 "closure/closure_preinit.js",
41 "closure/base.js", 41 "closure/base.js",
42 "deps.js", 42 "deps.js",
43 "chromevox/injected/loader.js" 43 "chromevox/injected/loader.js"
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 "description": "__MSG_CHROMEVOX_SHOW_CONTEXT_MENU__", 288 "description": "__MSG_CHROMEVOX_SHOW_CONTEXT_MENU__",
289 "suggested_key": { 289 "suggested_key": {
290 "chromeos": "Search+Ctrl+Space" 290 "chromeos": "Search+Ctrl+Space"
291 } 291 }
292 } 292 }
293 {% endif %} 293 {% endif %}
294 }, 294 },
295 "options_page": "chromevox/background/options.html", 295 "options_page": "chromevox/background/options.html",
296 "default_locale": "en" 296 "default_locale": "en"
297 } 297 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698