| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">Bookmarks</div> | 1 <div id="pageData-name" class="pageData">Bookmarks</div> |
| 2 | 2 |
| 3 <!-- BEGIN AUTHORED CONTENT --> | 3 <!-- BEGIN AUTHORED CONTENT --> |
| 4 <p id="classSummary"> | 4 <p id="classSummary"> |
| 5 Use the <code>chrome.bookmarks</code> module to create, organize, | 5 Use the <code>chrome.bookmarks</code> module to create, organize, |
| 6 and otherwise manipulate bookmarks. | 6 and otherwise manipulate bookmarks. |
| 7 Also see <a href="override.html">Override Pages</a>, | 7 Also see <a href="override.html">Override Pages</a>, |
| 8 which you can use to create a custom Bookmark Manager page. | 8 which you can use to create a custom Bookmark Manager page. |
| 9 </p> | 9 </p> |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 this code doesn't bother to define a callback function. | 75 this code doesn't bother to define a callback function. |
| 76 </p> | 76 </p> |
| 77 | 77 |
| 78 <pre> | 78 <pre> |
| 79 chrome.bookmarks.create({'parentId': extensionsFolderId, | 79 chrome.bookmarks.create({'parentId': extensionsFolderId, |
| 80 'title': 'Extensions doc', | 80 'title': 'Extensions doc', |
| 81 'url': 'http://code.google.com/chrome/extensions'}); | 81 'url': 'http://code.google.com/chrome/extensions'}); |
| 82 </pre> | 82 </pre> |
| 83 | 83 |
| 84 <p> | 84 <p> |
| 85 For an example of using bookmarks, see the | 85 For an example of using this API, see the |
| 86 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extension
s/docs/examples/api/bookmarks/basic/">basic bookmarks sample</a>. | 86 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extension
s/docs/examples/api/bookmarks/basic/">basic bookmarks sample</a>. |
| 87 For other examples and for help in viewing the source code, see | 87 For other examples and for help in viewing the source code, see |
| 88 <a href="samples.html">Samples</a>. | 88 <a href="samples.html">Samples</a>. |
| 89 </p> | 89 </p> |
| 90 | 90 |
| 91 <!-- END AUTHORED CONTENT --> | 91 <!-- END AUTHORED CONTENT --> |
| OLD | NEW |