OLD | NEW |
1 <div id="pageData-name" class="pageData">Formats: Manifest Files</div> | 1 <div id="pageData-name" class="pageData">Formats: Manifest Files</div> |
2 <div id="pageData-showTOC" class="pageData">true</div> | 2 <div id="pageData-showTOC" class="pageData">true</div> |
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 |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 <td> "privacy" </td> | 591 <td> "privacy" </td> |
592 <td> Required if the extension uses the | 592 <td> Required if the extension uses the |
593 <a href="privacy.html">chrome.privacy</a> module. </td> | 593 <a href="privacy.html">chrome.privacy</a> module. </td> |
594 </tr> | 594 </tr> |
595 <tr> | 595 <tr> |
596 <td> "proxy" </td> | 596 <td> "proxy" </td> |
597 <td> Required if the extension uses the | 597 <td> Required if the extension uses the |
598 <a href="proxy.html">chrome.proxy</a> module. </td> | 598 <a href="proxy.html">chrome.proxy</a> module. </td> |
599 </tr> | 599 </tr> |
600 <tr> | 600 <tr> |
| 601 <td> "storage" </td> |
| 602 <td> Required if the extension uses the |
| 603 <a href="storage.html">chrome.storage</a> module. </td> |
| 604 </tr> |
| 605 <tr> |
601 <td> "tabs" </td> | 606 <td> "tabs" </td> |
602 <td> Required if the extension uses the | 607 <td> Required if the extension uses the |
603 <a href="tabs.html">chrome.tabs</a> or | 608 <a href="tabs.html">chrome.tabs</a> or |
604 <a href="windows.html">chrome.windows</a> module. </td> | 609 <a href="windows.html">chrome.windows</a> module. </td> |
605 </tr> | 610 </tr> |
606 <tr> | 611 <tr> |
607 <td> "tts" </td> | 612 <td> "tts" </td> |
608 <td> Required if the extension uses the | 613 <td> Required if the extension uses the |
609 <a href="tts.html">chrome.tts</a> module. </td> | 614 <a href="tts.html">chrome.tts</a> module. </td> |
610 </tr> | 615 </tr> |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 windows or frames. Resources used by sandboxed pages (e.g. stylesheets or | 873 windows or frames. Resources used by sandboxed pages (e.g. stylesheets or |
869 JavaScript source files) do not need to appear in the | 874 JavaScript source files) do not need to appear in the |
870 <code>sandboxed_page</code> list, they will use the sandbox of the page | 875 <code>sandboxed_page</code> list, they will use the sandbox of the page |
871 that embeds them. | 876 that embeds them. |
872 </p> | 877 </p> |
873 | 878 |
874 <p> | 879 <p> |
875 Sandboxed page may only be specified when using | 880 Sandboxed page may only be specified when using |
876 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. | 881 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. |
877 </p> | 882 </p> |
OLD | NEW |