| OLD | NEW |
| 1 { | 1 { |
| 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ
2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE
bYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB", | 2 {%if key is defined %} |
| 3 "key": "{{key}}", |
| 4 {% endif %} |
| 3 "manifest_version": 2, | 5 "manifest_version": 2, |
| 4 "name": "ChromeVox", | 6 "name": "ChromeVox", |
| 5 "version": "1.0", | 7 "version": "{{set_version}}", |
| 6 "description": "ChromeVox - Giving Voice to Chrome.", | 8 "description": "ChromeVox - Giving Voice to Chrome.", |
| 7 {% if is_guest_manifest == '1' %} | 9 {% if is_guest_manifest == '1' %} |
| 8 "incognito": "split", | 10 "incognito": "split", |
| 9 {% endif %} | 11 {% endif %} |
| 10 "background": { | 12 "background": { |
| 11 {% if use_chromevox_next == '1' %} | 13 {% if use_chromevox_next == '1' %} |
| 12 "page": "cvox2/background/background.html" | 14 "page": "cvox2/background/background.html" |
| 13 {% else %} | 15 {% else %} |
| 14 "page": "chromevox/background/background.html" | 16 "page": "chromevox/background/background.html" |
| 15 {% endif %} | 17 {% endif %} |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "chromevox/injected/mathjax.js", | 53 "chromevox/injected/mathjax.js", |
| 52 "chromevox/injected/mathjax_external_util.js" | 54 "chromevox/injected/mathjax_external_util.js" |
| 53 ], | 55 ], |
| 54 {% if use_chromevox_next == '1' %} | 56 {% if use_chromevox_next == '1' %} |
| 55 "automation": { | 57 "automation": { |
| 56 "desktop": true | 58 "desktop": true |
| 57 }, | 59 }, |
| 58 {% endif %} | 60 {% endif %} |
| 59 "default_locale": "en" | 61 "default_locale": "en" |
| 60 } | 62 } |
| OLD | NEW |