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 "name": "ChromeVox", | 4 "name": "ChromeVox", |
4 "version": "1.0", | 5 "version": "1.0", |
5 "description": "ChromeVox - Giving Voice to Chrome.", | 6 "description": "ChromeVox - Giving Voice to Chrome.", |
6 "background": { | 7 "background": { |
7 "page": "chromevox/background/background.html" | 8 "page": "chromevox/background/background.html" |
8 }, | 9 }, |
9 "permissions": [ | 10 "permissions": [ |
10 "bookmarks", | 11 "bookmarks", |
11 "tabs", | 12 "tabs", |
12 "experimental", | 13 "experimental", |
13 "tts", | 14 "tts", |
14 "systemPrivate", | 15 "systemPrivate", |
15 "<all_urls>" | 16 "<all_urls>" |
16 ], | 17 ], |
17 "content_scripts": [ | 18 "content_scripts": [ |
18 { | 19 { |
19 "matches": [ "<all_urls>" ], | 20 "matches": [ "<all_urls>" ], |
20 "all_frames": true, | 21 "all_frames": true, |
21 "js": [ | 22 "js": [ |
22 "chromeVoxChromePageScript.js" | 23 "chromeVoxChromePageScript.js" |
23 ] | 24 ] |
24 } | 25 } |
25 ], | 26 ], |
| 27 "web_accessible_resources": [ |
| 28 "chromevox/injected/api.js" |
| 29 ], |
26 "default_locale": "en" | 30 "default_locale": "en" |
27 } | 31 } |
OLD | NEW |