| OLD | NEW |
| 1 <h1>Manifest Version</h1> | 1 <h1>Manifest Version</h1> |
| 2 | 2 |
| 3 <p> | 3 <p> |
| 4 Applications are simply bundles of resources, wrapped | 4 Applications are simply bundles of resources, wrapped |
| 5 up with a <a href="manifest.html"><code>manifest.json</code></a> file that | 5 up with a <a href="manifest"><code>manifest.json</code></a> file that |
| 6 describes the package's contents. The format of this file is generally stable, | 6 describes the package's contents. The format of this file is generally stable, |
| 7 but occasionally breaking changes must be made to address important issues. | 7 but occasionally breaking changes must be made to address important issues. |
| 8 Developers should specify which version of the manifest specification their | 8 Developers should specify which version of the manifest specification their |
| 9 package targets by setting a <code>manifest_version</code> key in their | 9 package targets by setting a <code>manifest_version</code> key in their |
| 10 manifests. | 10 manifests. |
| 11 </p> | 11 </p> |
| 12 | 12 |
| 13 <h2 id="current-version">Current Version</h2> | 13 <h2 id="current-version">Current Version</h2> |
| 14 | 14 |
| 15 <p> | 15 <p> |
| 16 Chrome App developers must currently specify | 16 Chrome App developers must currently specify |
| 17 <strong><code>'manifest_version': 2</code></strong>: | 17 <strong><code>'manifest_version': 2</code></strong>: |
| 18 </p> | 18 </p> |
| 19 | 19 |
| 20 <pre data-filename="manifest.json"> | 20 <pre data-filename="manifest.json"> |
| 21 { | 21 { |
| 22 ..., | 22 ..., |
| 23 "manifest_version": 2, | 23 "manifest_version": 2, |
| 24 ... | 24 ... |
| 25 } | 25 } |
| 26 </pre> | 26 </pre> |
| 27 | 27 |
| 28 <p> | 28 <p> |
| 29 Manifest version 1 only applied to extensions and hosted apps, not | 29 Manifest version 1 only applied to extensions and hosted apps, not |
| 30 Chrome Apps. It | 30 Chrome Apps. It |
| 31 was <a href="../extensions/manifestVersion.html">deprecated</a> in | 31 was <a href="../extensions/manifestVersion">deprecated</a> in |
| 32 Chrome 18. | 32 Chrome 18. |
| 33 </p> | 33 </p> |
| OLD | NEW |