| 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 has a | 5 Every extension 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 about the extension. | 8 that provides important information about the extension. |
| 9 </p> | 9 </p> |
| 10 | 10 |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 <td> Required if the extension uses the | 257 <td> Required if the extension uses the |
| 258 "chrome://favicon/<em>url</em>" mechanism | 258 "chrome://favicon/<em>url</em>" mechanism |
| 259 to display the favicon of a page. | 259 to display the favicon of a page. |
| 260 For example, to display the favicon of http://www.google.com/, | 260 For example, to display the favicon of http://www.google.com/, |
| 261 you declare the "chrome://favicon/" permission | 261 you declare the "chrome://favicon/" permission |
| 262 and use HTML code like this: | 262 and use HTML code like this: |
| 263 <pre><img src="chrome://favicon/http://www.google.com/"></pre> | 263 <pre><img src="chrome://favicon/http://www.google.com/"></pre> |
| 264 </td> | 264 </td> |
| 265 </tr> | 265 </tr> |
| 266 <tr> | 266 <tr> |
| 267 <td> "contextMenus" </td> |
| 268 <td> Required if the extension uses the |
| 269 <a href="contextMenus.html">context menus</a> module. </td> |
| 270 </tr> |
| 271 <tr> |
| 267 <td> "cookies" </td> | 272 <td> "cookies" </td> |
| 268 <td> Required if the extension uses the | 273 <td> Required if the extension uses the |
| 269 <a href="cookies.html">chrome.cookies</a> module. </td> | 274 <a href="cookies.html">chrome.cookies</a> module. </td> |
| 270 </tr> | 275 </tr> |
| 271 <tr> | 276 <tr> |
| 272 <td> "experimental" </td> | 277 <td> "experimental" </td> |
| 273 <td> Required if the extension uses any | 278 <td> Required if the extension uses any |
| 274 <a href="http://code.google.com/chrome/extensions/dev/experimental.html">
chrome.experimental.* APIs</a>.</td> | 279 <a href="http://code.google.com/chrome/extensions/dev/experimental.html">
chrome.experimental.* APIs</a>.</td> |
| 275 </tr> | 280 </tr> |
| 276 <tr> | 281 <tr> |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 A missing integer is equal to zero. | 362 A missing integer is equal to zero. |
| 358 For example, 1.1.9.9999 is newer than 1.1. | 363 For example, 1.1.9.9999 is newer than 1.1. |
| 359 </p> | 364 </p> |
| 360 | 365 |
| 361 <p> | 366 <p> |
| 362 For more information, see | 367 For more information, see |
| 363 <a href="autoupdate.html">Autoupdating</a>. | 368 <a href="autoupdate.html">Autoupdating</a>. |
| 364 </p> | 369 </p> |
| 365 | 370 |
| 366 <!-- [PENDING: Possibly: point to the gallery and make a big deal of the fact th
at autoupdating is free if you use the gallery.] --> | 371 <!-- [PENDING: Possibly: point to the gallery and make a big deal of the fact th
at autoupdating is free if you use the gallery.] --> |
| OLD | NEW |