OLD | NEW |
1 { | 1 { |
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ
2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE
bYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB", | 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ
2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE
bYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB", |
3 "manifest_version": 2, | 3 "manifest_version": 2, |
4 "name": "ChromeVox", | 4 "name": "ChromeVox", |
5 "version": "1.0", | 5 "version": "1.0", |
6 "description": "ChromeVox - Giving Voice to Chrome.", | 6 "description": "ChromeVox - Giving Voice to Chrome.", |
7 {% if is_guest_manifest == '1' %} | 7 {% if is_guest_manifest == '1' %} |
8 "incognito": "split", | 8 "incognito": "split", |
9 {% endif %} | 9 {% endif %} |
10 "background": { | 10 "background": { |
11 {% if use_chromevox_next == '1' %} | 11 {% if use_chromevox_next == '1' %} |
12 "page": "cvox2/background/background.html" | 12 "page": "cvox2/background/background.html" |
13 {% else %} | 13 {% else %} |
14 "page": "chromevox/background/background.html" | 14 "page": "chromevox/background/background.html" |
15 {% endif %} | 15 {% endif %} |
16 }, | 16 }, |
17 "permissions": [ | 17 "permissions": [ |
18 "accessibilityPrivate", | 18 "accessibilityPrivate", |
19 "automation", | 19 "automation", |
20 "bookmarks", | 20 "bookmarks", |
21 "tabs", | 21 "tabs", |
22 "experimental", | 22 "experimental", |
23 "history", | 23 "history", |
24 "tts", | 24 "tts", |
25 "systemPrivate", | 25 "systemPrivate", |
26 "brailleDisplayPrivate", | 26 "brailleDisplayPrivate", |
27 "commandLinePrivate", | 27 "commandLinePrivate", |
| 28 "virtualKeyboardPrivate", |
28 "<all_urls>" | 29 "<all_urls>" |
29 ], | 30 ], |
30 "content_scripts": [ | 31 "content_scripts": [ |
31 { | 32 { |
32 "matches": [ "<all_urls>" ], | 33 "matches": [ "<all_urls>" ], |
33 "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/ch
romevox/background/background.html" ], | 34 "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/ch
romevox/background/background.html" ], |
34 "all_frames": true, | 35 "all_frames": true, |
35 "js": [ | 36 "js": [ |
36 {% if use_chromevox_next == '1' %} | 37 {% if use_chromevox_next == '1' %} |
37 "closure/closure_preinit.js", | 38 "closure/closure_preinit.js", |
(...skipping 12 matching lines...) Expand all Loading... |
50 "chromevox/injected/mathjax.js", | 51 "chromevox/injected/mathjax.js", |
51 "chromevox/injected/mathjax_external_util.js" | 52 "chromevox/injected/mathjax_external_util.js" |
52 ], | 53 ], |
53 {% if use_chromevox_next == '1' %} | 54 {% if use_chromevox_next == '1' %} |
54 "automation": { | 55 "automation": { |
55 "desktop": true | 56 "desktop": true |
56 }, | 57 }, |
57 {% endif %} | 58 {% endif %} |
58 "default_locale": "en" | 59 "default_locale": "en" |
59 } | 60 } |
OLD | NEW |