Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "name": "Mozc IME extension", | |
| 3 "version": "@MAJOR@.@MINOR@.@BUILD@.@REVISION@", | |
|
nona
2014/07/14 06:03:48
Is this value is expected? Probably this is not a
Shu Chen
2014/07/14 08:53:44
Done.
| |
| 4 "permissions": [ | |
| 5 "input", | |
| 6 "unlimitedStorage" | |
| 7 ], | |
| 8 "manifest_version": 2, | |
| 9 "minimum_chrome_version": "22", | |
| 10 "description": "__MSG_appDesc__", | |
| 11 "default_locale": "en", | |
| 12 "background": { | |
| 13 "page": "nacl_mozc.html" | |
| 14 }, | |
| 15 "input_components": [{ | |
| 16 "name": "__MSG_mozc_us_inputmethod__", | |
| 17 "type": "ime", | |
| 18 "id": "nacl_mozc_us", | |
| 19 "description": "Japanese input method.", | |
| 20 "language": "ja", | |
| 21 "layouts": ["us"] | |
| 22 },{ | |
| 23 "name": "__MSG_mozc_jp_inputmethod__", | |
| 24 "type": "ime", | |
| 25 "id": "nacl_mozc_jp", | |
| 26 "description": "Japanese input method.", | |
| 27 "language": "ja", | |
| 28 "layouts": ["jp"] | |
| 29 }], | |
| 30 "options_page": "options.html", | |
| 31 "icons": { | |
| 32 "128": "product_icon_32bpp-128.png" | |
| 33 } | |
| 34 } | |
| OLD | NEW |