| OLD | NEW |
| 1 <div id="pageData-title" class="pageData">Formats: Manifest Files</div> | 1 <div id="pageData-title" 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 16 matching lines...) Expand all Loading... |
| 27 "<a href="autoupdate.html">update_url</a>": "http://<em>path/to/updateInfo</em
>.xml", | 27 "<a href="autoupdate.html">update_url</a>": "http://<em>path/to/updateInfo</em
>.xml", |
| 28 | 28 |
| 29 "<a href="background_pages.html">background_page</a>": "<em>aFile</em>.html", | 29 "<a href="background_pages.html">background_page</a>": "<em>aFile</em>.html", |
| 30 "<a href="browserAction.html">brower_action</a>": {...}, | 30 "<a href="browserAction.html">brower_action</a>": {...}, |
| 31 "<a href="ntp.html">chrome_url_overrides</a>": {...}, | 31 "<a href="ntp.html">chrome_url_overrides</a>": {...}, |
| 32 "<a href="content_scripts.html">content_scripts</a>": [...], | 32 "<a href="content_scripts.html">content_scripts</a>": [...], |
| 33 "<a href="pageAction.html">page_action</a>": {...}, | 33 "<a href="pageAction.html">page_action</a>": {...}, |
| 34 "<a href="#permissions">permissions</a>": [...], | 34 "<a href="#permissions">permissions</a>": [...], |
| 35 "<a href="npapi.html">plugins</a>": [...], | 35 "<a href="npapi.html">plugins</a>": [...], |
| 36 "<a href="themes.html">theme</a>": {...}, | 36 "<a href="themes.html">theme</a>": {...}, |
| 37 "<a href="toolstrip.html">toolstrips</a>": [...] | 37 "<a href="toolstrip.html">toolstrips</a>": [...], |
| 38 "<a href="options.html">options_page</a>": "<em>aFile</em>.html", |
| 38 } | 39 } |
| 39 </pre> | 40 </pre> |
| 40 | 41 |
| 41 | 42 |
| 42 <h2>Field details</h2> | 43 <h2>Field details</h2> |
| 43 | 44 |
| 44 <p> | 45 <p> |
| 45 This section covers fields that aren't described in another page. | 46 This section covers fields that aren't described in another page. |
| 46 For a complete list of fields, | 47 For a complete list of fields, |
| 47 with links to where they're described in detail, | 48 with links to where they're described in detail, |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 </pre> | 131 </pre> |
| 131 | 132 |
| 132 <p> | 133 <p> |
| 133 For more information, see | 134 For more information, see |
| 134 <a href="xhr.html">Cross-Origin XMLHttpRequest</a>, | 135 <a href="xhr.html">Cross-Origin XMLHttpRequest</a>, |
| 135 <a href="windows.html">Windows</a>, | 136 <a href="windows.html">Windows</a>, |
| 136 <a href="tabs.html">Tabs</a>, and | 137 <a href="tabs.html">Tabs</a>, and |
| 137 <a href="bookmarks.html">Bookmarks</a>. | 138 <a href="bookmarks.html">Bookmarks</a>. |
| 138 </p> | 139 </p> |
| 139 | 140 |
| OLD | NEW |