| OLD | NEW |
| 1 <h1 id="requirements">Manifest - Requirements</h1> | 1 <h1 id="requirements">Manifest - Requirements</h1> |
| 2 | 2 |
| 3 <p> | 3 <p> |
| 4 Technologies required by the app or extension. | 4 Technologies required by the app or extension. |
| 5 Hosting sites such as the Chrome Web Store may use this list | 5 Hosting sites such as the Chrome Web Store may use this list |
| 6 to dissuade users from installing apps or extensions | 6 to dissuade users from installing apps or extensions |
| 7 that will not work on their computer. | 7 that will not work on their computer. |
| 8 Supported requirements currently include "3D" and "plugins"; | 8 Supported requirements currently include "3D" and "plugins"; |
| 9 additional requirements checks may be added in the future. | 9 additional requirements checks may be added in the future. |
| 10 </p> | 10 </p> |
| 11 | 11 |
| 12 <p> | 12 <p> |
| 13 The "3D" requirement denotes GPU hardware acceleration. | 13 The "3D" requirement denotes GPU hardware acceleration. |
| 14 The "webgl" requirement refers to the | 14 The "webgl" requirement refers to the |
| 15 <a href="http://www.khronos.org/webgl/">WebGL API</a>. | 15 <a href="http://www.khronos.org/webgl/">WebGL API</a>. |
| 16 For more information on Chrome 3D graphics support, | 16 For more information on Chrome 3D graphics support, |
| 17 see the help article on | 17 see the help article on |
| 18 <a href="http://www.google.com/support/chrome/bin/answer.py?answer=1220892">WebG
L and 3D graphics</a>. | 18 <a href="https://support.google.com/chrome/answer/1220892">WebGL and 3D graphics
</a>. |
| 19 You can list the 3D-related features your app requires, | 19 You can list the 3D-related features your app requires, |
| 20 as demonstrated in the following example: | 20 as demonstrated in the following example: |
| 21 </p> | 21 </p> |
| 22 | 22 |
| 23 <pre data-filename="manifest.json"> | 23 <pre data-filename="manifest.json"> |
| 24 "requirements": { | 24 "requirements": { |
| 25 "3D": { | 25 "3D": { |
| 26 "features": ["webgl"] | 26 "features": ["webgl"] |
| 27 } | 27 } |
| 28 } | 28 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 42 as shown in this example: | 42 as shown in this example: |
| 43 </p> | 43 </p> |
| 44 | 44 |
| 45 <pre data-filename="manifest.json"> | 45 <pre data-filename="manifest.json"> |
| 46 "requirements": { | 46 "requirements": { |
| 47 "plugins": { | 47 "plugins": { |
| 48 "npapi": true | 48 "npapi": true |
| 49 } | 49 } |
| 50 } | 50 } |
| 51 </pre> | 51 </pre> |
| OLD | NEW |