| 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", |
| 11 {% endif %} | 11 {% endif %} |
| 12 "background": { | 12 "background": { |
| 13 {% if is_chromevox_next == '1' %} | |
| 14 "page": "cvox2/background/background.html" | 13 "page": "cvox2/background/background.html" |
| 15 {% else %} | |
| 16 "page": "chromevox/background/background.html" | |
| 17 {% endif %} | |
| 18 }, | 14 }, |
| 19 "permissions": [ | 15 "permissions": [ |
| 20 "accessibilityPrivate", | 16 "accessibilityPrivate", |
| 21 "bookmarks", | 17 "bookmarks", |
| 22 "brailleDisplayPrivate", | 18 "brailleDisplayPrivate", |
| 23 {% if is_chromevox_next == '1' %} | |
| 24 "commands.accessibility", | 19 "commands.accessibility", |
| 25 {% endif %} | |
| 26 "commandLinePrivate", | 20 "commandLinePrivate", |
| 27 "experimental", | 21 "experimental", |
| 28 "history", | 22 "history", |
| 29 "storage", | 23 "storage", |
| 30 "systemPrivate", | 24 "systemPrivate", |
| 31 "tabs", | 25 "tabs", |
| 32 "tts", | 26 "tts", |
| 33 "virtualKeyboardPrivate", | 27 "virtualKeyboardPrivate", |
| 34 "<all_urls>" | 28 "<all_urls>" |
| 35 ], | 29 ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 51 {% endif %} | 45 {% endif %} |
| 52 ] | 46 ] |
| 53 } | 47 } |
| 54 ], | 48 ], |
| 55 "web_accessible_resources": [ | 49 "web_accessible_resources": [ |
| 56 "chromevox/injected/api.js", | 50 "chromevox/injected/api.js", |
| 57 "chromevox/injected/api_util.js", | 51 "chromevox/injected/api_util.js", |
| 58 "chromevox/injected/mathjax.js", | 52 "chromevox/injected/mathjax.js", |
| 59 "chromevox/injected/mathjax_external_util.js" | 53 "chromevox/injected/mathjax_external_util.js" |
| 60 ], | 54 ], |
| 61 {% if is_chromevox_next == '1' %} | |
| 62 "automation": { | 55 "automation": { |
| 63 "desktop": true | 56 "desktop": true |
| 64 }, | 57 }, |
| 65 "commands": { | 58 "commands": { |
| 66 "nextElement": { | 59 "nextElement": { |
| 67 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", | 60 "description": "__MSG_CHROMEVOX_NEXT_OBJECT__", |
| 68 "suggested_key": { | 61 "suggested_key": { |
| 69 "chromeos": "Search+Right" | 62 "chromeos": "Search+Right" |
| 70 } | 63 } |
| 71 }, | 64 }, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "chromeos": "Search+Space" | 146 "chromeos": "Search+Space" |
| 154 } | 147 } |
| 155 }, | 148 }, |
| 156 "toggleChromeVoxVersion": { | 149 "toggleChromeVoxVersion": { |
| 157 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__", | 150 "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__", |
| 158 "suggested_key": { | 151 "suggested_key": { |
| 159 "chromeos": "Search+Ctrl+Q" | 152 "chromeos": "Search+Ctrl+Q" |
| 160 } | 153 } |
| 161 } | 154 } |
| 162 }, | 155 }, |
| 163 {% endif %} | |
| 164 "options_page": "chromevox/background/options.html", | 156 "options_page": "chromevox/background/options.html", |
| 165 "default_locale": "en" | 157 "default_locale": "en" |
| 166 } | 158 } |
| OLD | NEW |