| OLD | NEW |
| 1 <h1>Formats: Manifest Files</h1> | 1 <h1>Formats: Manifest Files</h1> |
| 2 | 2 |
| 3 | |
| 4 <p> | 3 <p> |
| 5 Every extension, installable web app, and theme has a | 4 Every extension, installable web app, and theme has a |
| 6 <a href="http://www.json.org">JSON</a>-formatted manifest file, | 5 <a href="http://www.json.org">JSON</a>-formatted manifest file, |
| 7 named <code>manifest.json</code>, | 6 named <code>manifest.json</code>, |
| 8 that provides important information. | 7 that provides important information. |
| 9 </p> | 8 </p> |
| 10 | 9 |
| 11 <h2 id="overview"> Field summary </h2> | 10 <h2 id="overview"> Field summary </h2> |
| 12 | 11 |
| 13 <p> | 12 <p> |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 <tr> | 514 <tr> |
| 516 <td> "clipboardRead" </td> | 515 <td> "clipboardRead" </td> |
| 517 <td> Required if the extension uses | 516 <td> Required if the extension uses |
| 518 <code>document.execCommand('paste')</code>. </td> | 517 <code>document.execCommand('paste')</code>. </td> |
| 519 </tr> | 518 </tr> |
| 520 <tr> | 519 <tr> |
| 521 <td> "clipboardWrite" </td> | 520 <td> "clipboardWrite" </td> |
| 522 <td> Indicates the app or extension uses | 521 <td> Indicates the app or extension uses |
| 523 <code>document.execCommand('copy')</code> or | 522 <code>document.execCommand('copy')</code> or |
| 524 <code>document.execCommand('cut')</code>. This permission is <b>required | 523 <code>document.execCommand('cut')</code>. This permission is <b>required |
| 525 for hosted apps</b>; it's recommended for extensions and packaged apps. | 524 for hosted apps</b>; it's recommended for extensions. |
| 526 </td> | 525 </td> |
| 527 </tr> | 526 </tr> |
| 528 <tr> | 527 <tr> |
| 529 <td> "contentSettings" </td> | 528 <td> "contentSettings" </td> |
| 530 <td> Required if the extension uses the | 529 <td> Required if the extension uses the |
| 531 <a href="contentSettings.html">chrome.contentSettings</a> module. </td> | 530 <a href="contentSettings.html">chrome.contentSettings</a> module. </td> |
| 532 </tr> | 531 </tr> |
| 533 <tr> | 532 <tr> |
| 534 <td> "contextMenus" </td> | 533 <td> "contextMenus" </td> |
| 535 <td> Required if the extension uses the | 534 <td> Required if the extension uses the |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 goes into more detail about implementing a sandboxing workflow that enables use | 903 goes into more detail about implementing a sandboxing workflow that enables use |
| 905 of libraries that would otherwise have issues executing under extension's | 904 of libraries that would otherwise have issues executing under extension's |
| 906 <a href="../extensions/contentSecurityPolicy.html">default Content Security | 905 <a href="../extensions/contentSecurityPolicy.html">default Content Security |
| 907 Policy</a>. | 906 Policy</a>. |
| 908 </p> | 907 </p> |
| 909 | 908 |
| 910 <p> | 909 <p> |
| 911 Sandboxed page may only be specified when using | 910 Sandboxed page may only be specified when using |
| 912 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. | 911 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. |
| 913 </p> | 912 </p> |
| OLD | NEW |