| OLD | NEW |
| 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 15 matching lines...) Expand all Loading... |
| 26 "commandLinePrivate", | 26 "commandLinePrivate", |
| 27 "experimental", | 27 "experimental", |
| 28 "history", | 28 "history", |
| 29 "storage", | 29 "storage", |
| 30 "systemPrivate", | 30 "systemPrivate", |
| 31 "tabs", | 31 "tabs", |
| 32 "tts", | 32 "tts", |
| 33 "virtualKeyboardPrivate", | 33 "virtualKeyboardPrivate", |
| 34 "<all_urls>" | 34 "<all_urls>" |
| 35 ], | 35 ], |
| 36 {% if is_chromevox_next == '0' %} |
| 36 "content_scripts": [ | 37 "content_scripts": [ |
| 37 { | 38 { |
| 38 "matches": [ "<all_urls>" ], | 39 "matches": [ "<all_urls>" ], |
| 39 "exclude_globs": [ | 40 "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/ch
romevox/background/background.html" ], |
| 40 "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/backgro
und/background.html" | |
| 41 ], | |
| 42 "all_frames": true, | 41 "all_frames": true, |
| 43 "js": [ | 42 "js": [ |
| 44 {% if is_js_compressed == '1' %} | 43 {% if is_js_compressed == '1' %} |
| 45 "chromeVoxChromePageScript.js" | 44 "chromeVoxChromePageScript.js" |
| 46 {% else %} | 45 {% else %} |
| 47 "closure/closure_preinit.js", | 46 "closure/closure_preinit.js", |
| 48 "closure/base.js", | 47 "closure/base.js", |
| 49 "deps.js", | 48 "deps.js", |
| 50 "chromevox/injected/loader.js" | 49 "chromevox/injected/loader.js" |
| 51 {% endif %} | 50 {% endif %} |
| 52 ] | 51 ] |
| 53 } | 52 } |
| 54 ], | 53 ], |
| 54 {% endif %} |
| 55 "web_accessible_resources": [ | 55 "web_accessible_resources": [ |
| 56 "chromevox/injected/api.js", | 56 "chromevox/injected/api.js", |
| 57 "chromevox/injected/api_util.js", | 57 "chromevox/injected/api_util.js", |
| 58 "chromevox/injected/mathjax.js", | 58 "chromevox/injected/mathjax.js", |
| 59 "chromevox/injected/mathjax_external_util.js" | 59 "chromevox/injected/mathjax_external_util.js" |
| 60 ], | 60 ], |
| 61 {% if is_chromevox_next == '1' %} | 61 {% if is_chromevox_next == '1' %} |
| 62 "automation": { | 62 "automation": { |
| 63 "desktop": true | 63 "desktop": true |
| 64 }, | 64 }, |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__", | 157 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__", |
| 158 "suggested_key": { | 158 "suggested_key": { |
| 159 "chromeos": "Search+Ctrl+Q" | 159 "chromeos": "Search+Ctrl+Q" |
| 160 } | 160 } |
| 161 } | 161 } |
| 162 }, | 162 }, |
| 163 {% endif %} | 163 {% endif %} |
| 164 "options_page": "chromevox/background/options.html", | 164 "options_page": "chromevox/background/options.html", |
| 165 "default_locale": "en" | 165 "default_locale": "en" |
| 166 } | 166 } |
| OLD | NEW |