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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 For more information see | 432 For more information see |
433 <a href="notifications.html">Desktop Notifications</a>.</td> | 433 <a href="notifications.html">Desktop Notifications</a>.</td> |
434 </tr> | 434 </tr> |
435 <tr> | 435 <tr> |
436 <td> "tabs" </td> | 436 <td> "tabs" </td> |
437 <td> Required if the extension uses the | 437 <td> Required if the extension uses the |
438 <a href="tabs.html">chrome.tabs</a> or | 438 <a href="tabs.html">chrome.tabs</a> or |
439 <a href="windows.html">chrome.windows</a> module. </td> | 439 <a href="windows.html">chrome.windows</a> module. </td> |
440 </tr> | 440 </tr> |
441 <tr> | 441 <tr> |
| 442 <td> "tts" </td> |
| 443 <td> Required if the extension uses the |
| 444 <a href="tts.html">chrome.tts</a> module. </td> |
| 445 </tr> |
| 446 <tr> |
| 447 <td> "ttsEngine" </td> |
| 448 <td> Required if the extension uses the |
| 449 <a href="ttsEngine.html">chrome.ttsEngine</a> module. </td> |
| 450 </tr> |
| 451 <tr> |
442 <td> "unlimitedStorage"</td> | 452 <td> "unlimitedStorage"</td> |
443 <td> Provides an unlimited quota for storing HTML5 client-side data, | 453 <td> Provides an unlimited quota for storing HTML5 client-side data, |
444 such as databases and local storage files. | 454 such as databases and local storage files. |
445 Without this permission, the extension is limited to | 455 Without this permission, the extension is limited to |
446 5 MB of local storage. | 456 5 MB of local storage. |
447 | 457 |
448 <p class="note"> | 458 <p class="note"> |
449 <b>Note:</b> | 459 <b>Note:</b> |
450 This permission applies only to Web SQL Database and application cache | 460 This permission applies only to Web SQL Database and application cache |
451 (see issue <a href="http://crbug.com/58985">58985</a>). | 461 (see issue <a href="http://crbug.com/58985">58985</a>). |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 A missing integer is equal to zero. | 510 A missing integer is equal to zero. |
501 For example, 1.1.9.9999 is newer than 1.1. | 511 For example, 1.1.9.9999 is newer than 1.1. |
502 </p> | 512 </p> |
503 | 513 |
504 <p> | 514 <p> |
505 For more information, see | 515 For more information, see |
506 <a href="autoupdate.html">Autoupdating</a>. | 516 <a href="autoupdate.html">Autoupdating</a>. |
507 </p> | 517 </p> |
508 | 518 |
509 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the
fact that autoupdating is free if you use them.] --> | 519 <!-- [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 |