| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 Required if the extension wants to interact | 311 Required if the extension wants to interact |
| 312 with the code running on pages. | 312 with the code running on pages. |
| 313 Many extension capabilities, such as | 313 Many extension capabilities, such as |
| 314 <a href="xhr.html">cross-origin XMLHttpRequests</a>, | 314 <a href="xhr.html">cross-origin XMLHttpRequests</a>, |
| 315 <a href="content_scripts.html#pi">programmatically injected | 315 <a href="content_scripts.html#pi">programmatically injected |
| 316 content scripts</a>, and <a href="cookies.html">the cookies API</a> | 316 content scripts</a>, and <a href="cookies.html">the cookies API</a> |
| 317 require host permissions. For details on the syntax, see | 317 require host permissions. For details on the syntax, see |
| 318 <a href="match_patterns.html">Match Patterns</a>. | 318 <a href="match_patterns.html">Match Patterns</a>. |
| 319 </td> | 319 </td> |
| 320 </tr> | 320 </tr> |
| 321 <tr> | 321 <tr id="bg"> |
| 322 <td> "background" </td> | 322 <td> "background" </td> |
| 323 <td> <p> | 323 <td> <p> |
| 324 Makes Chrome start up early and and shut down late, | 324 Makes Chrome start up early and and shut down late, |
| 325 so that apps and extensions can have a longer life. | 325 so that apps and extensions can have a longer life. |
| 326 </p> | 326 </p> |
| 327 | 327 |
| 328 <p> | 328 <p> |
| 329 When any installed hosted app, packaged app, or extension | 329 When any installed hosted app, packaged app, or extension |
| 330 has "background" permission, Chrome runs (invisibly) | 330 has "background" permission, Chrome runs (invisibly) |
| 331 as soon as the user logs into their computer—before | 331 as soon as the user logs into their computer—before |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 A missing integer is equal to zero. | 478 A missing integer is equal to zero. |
| 479 For example, 1.1.9.9999 is newer than 1.1. | 479 For example, 1.1.9.9999 is newer than 1.1. |
| 480 </p> | 480 </p> |
| 481 | 481 |
| 482 <p> | 482 <p> |
| 483 For more information, see | 483 For more information, see |
| 484 <a href="autoupdate.html">Autoupdating</a>. | 484 <a href="autoupdate.html">Autoupdating</a>. |
| 485 </p> | 485 </p> |
| 486 | 486 |
| 487 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the
fact that autoupdating is free if you use them.] --> | 487 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the
fact that autoupdating is free if you use them.] --> |
| OLD | NEW |