| 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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 For more information see | 461 For more information see |
| 462 <a href="notifications.html">Desktop Notifications</a>.</td> | 462 <a href="notifications.html">Desktop Notifications</a>.</td> |
| 463 </tr> | 463 </tr> |
| 464 <tr> | 464 <tr> |
| 465 <td> "tabs" </td> | 465 <td> "tabs" </td> |
| 466 <td> Required if the extension uses the | 466 <td> Required if the extension uses the |
| 467 <a href="tabs.html">chrome.tabs</a> or | 467 <a href="tabs.html">chrome.tabs</a> or |
| 468 <a href="windows.html">chrome.windows</a> module. </td> | 468 <a href="windows.html">chrome.windows</a> module. </td> |
| 469 </tr> | 469 </tr> |
| 470 <tr> | 470 <tr> |
| 471 <td> "tts" </td> |
| 472 <td> Required if the extension uses the |
| 473 <a href="tts.html">chrome.tts</a> module. </td> |
| 474 </tr> |
| 475 <tr> |
| 476 <td> "ttsEngine" </td> |
| 477 <td> Required if the extension uses the |
| 478 <a href="ttsEngine.html">chrome.ttsEngine</a> module. </td> |
| 479 </tr> |
| 480 <tr> |
| 471 <td> "unlimitedStorage"</td> | 481 <td> "unlimitedStorage"</td> |
| 472 <td> Provides an unlimited quota for storing HTML5 client-side data, | 482 <td> Provides an unlimited quota for storing HTML5 client-side data, |
| 473 such as databases and local storage files. | 483 such as databases and local storage files. |
| 474 Without this permission, the extension is limited to | 484 Without this permission, the extension is limited to |
| 475 5 MB of local storage. | 485 5 MB of local storage. |
| 476 | 486 |
| 477 <p class="note"> | 487 <p class="note"> |
| 478 <b>Note:</b> | 488 <b>Note:</b> |
| 479 This permission applies only to Web SQL Database and application cache | 489 This permission applies only to Web SQL Database and application cache |
| 480 (see issue <a href="http://crbug.com/58985">58985</a>). | 490 (see issue <a href="http://crbug.com/58985">58985</a>). |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 A missing integer is equal to zero. | 539 A missing integer is equal to zero. |
| 530 For example, 1.1.9.9999 is newer than 1.1. | 540 For example, 1.1.9.9999 is newer than 1.1. |
| 531 </p> | 541 </p> |
| 532 | 542 |
| 533 <p> | 543 <p> |
| 534 For more information, see | 544 For more information, see |
| 535 <a href="autoupdate.html">Autoupdating</a>. | 545 <a href="autoupdate.html">Autoupdating</a>. |
| 536 </p> | 546 </p> |
| 537 | 547 |
| 538 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the
fact that autoupdating is free if you use them.] --> | 548 <!-- [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 |