OLD | NEW |
1 { | 1 { |
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9fDu8apG3Dz72XTT3Ym1SfGt06tdowT
lYQ+3lGlCbVpfnMOmewgRgYxzUtUPso9aQERZcmI2+7UtbWjtk6/usl9Hr7a1JBQwfaUoUygEe56ajUe
Zhe/ErkH5CXT84U0pokfPr5vMvc7RVPduU+UBiF0DnGb/hSpzz/1UhJ5H9AwIDAQAB", | 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9fDu8apG3Dz72XTT3Ym1SfGt06tdowT
lYQ+3lGlCbVpfnMOmewgRgYxzUtUPso9aQERZcmI2+7UtbWjtk6/usl9Hr7a1JBQwfaUoUygEe56ajUe
Zhe/ErkH5CXT84U0pokfPr5vMvc7RVPduU+UBiF0DnGb/hSpzz/1UhJ5H9AwIDAQAB", |
3 "name": "experimental.inputMethod IME menu test", | 3 "name": "experimental.inputMethod IME menu test", |
4 "version": "0.1", | 4 "version": "0.1", |
5 "manifest_version": 2, | 5 "manifest_version": 2, |
6 "description": "Test that the IME extension gets the initial state and state c
hange event of the IME menu properly", | 6 "description": "Test that the IME extension gets the initial state and state c
hange event of the IME menu properly", |
7 "background": { | 7 "background": { |
8 "scripts": ["background.js"] | 8 "scripts": ["background.js"] |
9 }, | 9 }, |
10 "permissions": [ "inputMethodPrivate" ] | 10 "permissions": [ |
| 11 "input", |
| 12 "inputMethodPrivate" |
| 13 ], |
| 14 "input_components": [{ |
| 15 "name": "Test IME", |
| 16 "type": "ime", |
| 17 "id": "test", |
| 18 "description": "Test", |
| 19 "language": "en", |
| 20 "layouts": ["us::eng"] |
| 21 }, { |
| 22 "name": "Test IME2", |
| 23 "type": "ime", |
| 24 "id": "test2", |
| 25 "description": "Test", |
| 26 "language": "en", |
| 27 "layouts": ["us::eng"] |
| 28 }] |
11 } | 29 } |
12 | 30 |
OLD | NEW |