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

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

Issue 1853353002: Use ChromeVox Compat for media router. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 17 matching lines...) Expand all
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/cvox2/background/ background.html", 33 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/ background.html",
34 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/backgro und/kbexplorer.html", 34 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/backgro und/kbexplorer.html",
35 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/ panel.html", 35 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/cvox2/background/ panel.html",
36 "chrome://md-settings*", 36 "chrome://md-settings*",
37 "chrome://downloads*", 37 "chrome://downloads*",
38 "chrome://media-router*",
38 "chrome://oobe/login*", 39 "chrome://oobe/login*",
39 "https://accounts.google.com/embedded/setup/chromeos*" 40 "https://accounts.google.com/embedded/setup/chromeos*"
40 ], 41 ],
41 "all_frames": true, 42 "all_frames": true,
42 "js": [ 43 "js": [
43 {% if is_js_compressed == '1' %} 44 {% if is_js_compressed == '1' %}
44 "chromeVoxChromePageScript.js", 45 "chromeVoxChromePageScript.js",
45 "chromeVox2ChromePageScript.js" 46 "chromeVox2ChromePageScript.js"
46 {% else %} 47 {% else %}
47 "closure/closure_preinit.js", 48 "closure/closure_preinit.js",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 } 96 }
96 }, 97 },
97 "options_page": "chromevox/background/options.html", 98 "options_page": "chromevox/background/options.html",
98 "default_locale": "en", 99 "default_locale": "en",
99 "icons": { 100 "icons": {
100 "16": "images/chromevox-16.png", 101 "16": "images/chromevox-16.png",
101 "48": "images/chromevox-48.png", 102 "48": "images/chromevox-48.png",
102 "128": "images/chromevox-128.png" 103 "128": "images/chromevox-128.png"
103 } 104 }
104 } 105 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698