| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">Formats: Manifest Files</div> | 1 <h1>Formats: Manifest Files</h1> |
| 2 <div id="pageData-showTOC" class="pageData">true</div> | 2 |
| 3 | 3 |
| 4 <p> | 4 <p> |
| 5 Every extension, installable web app, and theme has a | 5 Every extension, installable web app, and theme has a |
| 6 <a href="http://www.json.org">JSON</a>-formatted manifest file, | 6 <a href="http://www.json.org">JSON</a>-formatted manifest file, |
| 7 named <code>manifest.json</code>, | 7 named <code>manifest.json</code>, |
| 8 that provides important information. | 8 that provides important information. |
| 9 </p> | 9 </p> |
| 10 | 10 |
| 11 <h2 id="overview"> Field summary </h2> | 11 <h2 id="overview"> Field summary </h2> |
| 12 | 12 |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 | 731 |
| 732 <p> | 732 <p> |
| 733 A missing integer is equal to zero. | 733 A missing integer is equal to zero. |
| 734 For example, 1.1.9.9999 is newer than 1.1. | 734 For example, 1.1.9.9999 is newer than 1.1. |
| 735 </p> | 735 </p> |
| 736 | 736 |
| 737 <p> | 737 <p> |
| 738 For more information, see | 738 For more information, see |
| 739 <a href="autoupdate.html">Autoupdating</a>. | 739 <a href="autoupdate.html">Autoupdating</a>. |
| 740 </p> | 740 </p> |
| 741 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the
fact that autoupdating is free if you use them.] --> | 741 |
| 742 | 742 |
| 743 | 743 |
| 744 <h3 id="manifest_version">manifest_version</h3> | 744 <h3 id="manifest_version">manifest_version</h3> |
| 745 | 745 |
| 746 <p> | 746 <p> |
| 747 One integer specifying the version of the manifest file format your package | 747 One integer specifying the version of the manifest file format your package |
| 748 requires. As of Chrome 18, developers <em>should</em> specify <code>2</code> | 748 requires. As of Chrome 18, developers <em>should</em> specify <code>2</code> |
| 749 (without quotes) to use the format as described by this document: | 749 (without quotes) to use the format as described by this document: |
| 750 </p> | 750 </p> |
| 751 | 751 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 <a href="sandboxingEval.html">"Using eval in Chrome Extensions. Safely."</a> | 894 <a href="sandboxingEval.html">"Using eval in Chrome Extensions. Safely."</a> |
| 895 goes into more detail about implementing a sandboxing workflow that enables use | 895 goes into more detail about implementing a sandboxing workflow that enables use |
| 896 of libraries that would otherwise have issues executing under extension's | 896 of libraries that would otherwise have issues executing under extension's |
| 897 <a href="../extensions/contentSecurityPolicy.html">default Content Security | 897 <a href="../extensions/contentSecurityPolicy.html">default Content Security |
| 898 Policy</a>. | 898 Policy</a>. |
| 899 </p> | 899 </p> |
| 900 | 900 |
| 901 <p> | 901 <p> |
| 902 Sandboxed page may only be specified when using | 902 Sandboxed page may only be specified when using |
| 903 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. | 903 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. |
| 904 </p> | 904 </p> |
| OLD | NEW |