Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <h1>Formats: Manifest Files</h1> | 1 <h1>Formats: Manifest Files</h1> |
| 2 | 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 |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 465 Required if the extension wants to interact | 465 Required if the extension wants to interact |
| 466 with the code running on pages. | 466 with the code running on pages. |
| 467 Many extension capabilities, such as | 467 Many extension capabilities, such as |
| 468 <a href="xhr.html">cross-origin XMLHttpRequests</a>, | 468 <a href="xhr.html">cross-origin XMLHttpRequests</a>, |
| 469 <a href="content_scripts.html#pi">programmatically injected | 469 <a href="content_scripts.html#pi">programmatically injected |
| 470 content scripts</a>, and <a href="cookies.html">the cookies API</a> | 470 content scripts</a>, and <a href="cookies.html">the cookies API</a> |
| 471 require host permissions. For details on the syntax, see | 471 require host permissions. For details on the syntax, see |
| 472 <a href="match_patterns.html">Match Patterns</a>. | 472 <a href="match_patterns.html">Match Patterns</a>. |
| 473 </td> | 473 </td> |
| 474 </tr> | 474 </tr> |
| 475 <tr> | |
| 476 <td> "activeTab" </td> | |
| 477 <td> <p> | |
| 478 Requests that the extension be granted permissions according to the | |
| 479 <a href="activeTab.html">activeTab</a> specification. | |
|
mkearney1
2012/09/12 17:02:37
This is kind of vague. What about:
Requests permi
| |
| 480 </p> | |
| 481 </td> | |
| 482 </tr> | |
| 475 <tr id="bg"> | 483 <tr id="bg"> |
| 476 <td> "background" </td> | 484 <td> "background" </td> |
| 477 <td> <p> | 485 <td> <p> |
| 478 Makes Chrome start up early and and shut down late, | 486 Makes Chrome start up early and and shut down late, |
| 479 so that apps and extensions can have a longer life. | 487 so that apps and extensions can have a longer life. |
| 480 </p> | 488 </p> |
| 481 | 489 |
| 482 <p> | 490 <p> |
| 483 When any installed hosted app, packaged app, or extension | 491 When any installed hosted app, packaged app, or extension |
| 484 has "background" permission, Chrome runs (invisibly) | 492 has "background" permission, Chrome runs (invisibly) |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 895 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 |
| 896 of libraries that would otherwise have issues executing under extension's | 904 of libraries that would otherwise have issues executing under extension's |
| 897 <a href="../extensions/contentSecurityPolicy.html">default Content Security | 905 <a href="../extensions/contentSecurityPolicy.html">default Content Security |
| 898 Policy</a>. | 906 Policy</a>. |
| 899 </p> | 907 </p> |
| 900 | 908 |
| 901 <p> | 909 <p> |
| 902 Sandboxed page may only be specified when using | 910 Sandboxed page may only be specified when using |
| 903 <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. |
| 904 </p> | 912 </p> |
| OLD | NEW |