| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "{{name}}", | 2 "name": "{{name}}", |
| 3 "version": "{{version}}", | 3 "version": "{{version}}", |
| 4 "minimum_chrome_version": "{{version}}", | 4 [[if min_chrome_version:]] |
| 5 "minimum_chrome_version": "{{min_chrome_version}}", |
| 6 [[]] |
| 5 "manifest_version": 2, | 7 "manifest_version": 2, |
| 6 "description": "{{description}}", | 8 "description": "{{description}}", |
| 7 "offline_enabled": true, | 9 "offline_enabled": true, |
| 8 "icons": { | 10 "icons": { |
| 9 "128": "icon128.png" | 11 "128": "icon128.png" |
| 10 }, | 12 }, |
| 11 "app": { | 13 "app": { |
| 12 "background": { | 14 "background": { |
| 13 "scripts": ["background.js"] | 15 "scripts": ["background.js"] |
| 14 } | 16 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 37 "sub_package_path": "_platform_specific/x86-32" | 39 "sub_package_path": "_platform_specific/x86-32" |
| 38 }, | 40 }, |
| 39 { | 41 { |
| 40 "nacl_arch": "arm", | 42 "nacl_arch": "arm", |
| 41 "sub_package_path": "_platform_specific/arm" | 43 "sub_package_path": "_platform_specific/arm" |
| 42 } | 44 } |
| 43 ], | 45 ], |
| 44 [[]] | 46 [[]] |
| 45 "permissions": {{permissions}} | 47 "permissions": {{permissions}} |
| 46 } | 48 } |
| OLD | NEW |