| OLD | NEW |
| 1 <div id="pageData-title" class="pageData">Bookmarks</div> | 1 <div id="pageData-title" 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 </p> | 7 </p> |
| 8 | 8 |
| 9 <h2 id="description">Description</h2> | 9 <h2 id="description">Description</h2> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 <h3 id="overview-properties">Properties</h3> | 29 <h3 id="overview-properties">Properties</h3> |
| 30 | 30 |
| 31 <p> | 31 <p> |
| 32 Objects that represent bookmarks can have the following properties: | 32 Objects that represent bookmarks can have the following properties: |
| 33 </p> | 33 </p> |
| 34 | 34 |
| 35 <dl> | 35 <dl> |
| 36 <dt> <code>id</code> </dt> | 36 <dt> <code>id</code> </dt> |
| 37 <dd> An integer ID that's unique for each bookmark. | 37 <dd> An integer ID that's unique for each bookmark. |
| 38 Don't save this ID in persistent storage; | 38 IDs are unique and persisted within the current profile and are |
| 39 the ID for a particular bookmark might change | 39 and stable across shutdown and startup of the browser. |
| 40 the next time the browser is started. | |
| 41 <span class="comment"> | |
| 42 [PENDING: these might be persistent now] | |
| 43 </span> | |
| 44 </dd> | 40 </dd> |
| 45 | 41 |
| 46 <dt> <code>title</code> </dt> | 42 <dt> <code>title</code> </dt> |
| 47 <dd> The name of the bookmark. | 43 <dd> The name of the bookmark. |
| 48 This is the user-visible string that describes the URL or group. | 44 This is the user-visible string that describes the URL or group. |
| 49 </dd> | 45 </dd> |
| 50 | 46 |
| 51 <dt> <code>parentId </code> | 47 <dt> <code>parentId </code> |
| 52 <em>(omitted for the root group)</em> | 48 <em>(omitted for the root group)</em> |
| 53 </dt> | 49 </dt> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 }</pre> | 136 }</pre> |
| 141 | 137 |
| 142 | 138 |
| 143 <!-- PENDING: we could have links to source code and sample extensions. E.g.: | 139 <!-- PENDING: we could have links to source code and sample extensions. E.g.: |
| 144 <div class="exampleLink"> | 140 <div class="exampleLink"> |
| 145 <a href="http://www.google.com/url?q=http%3A%2F%2Fexample.com&sa=D&sntz=
1&usg=AFrqEzd0oeJ1qGwYPoKuq1dTesEchMDLIQ">Full source code</a> | | 141 <a href="http://www.google.com/url?q=http%3A%2F%2Fexample.com&sa=D&sntz=
1&usg=AFrqEzd0oeJ1qGwYPoKuq1dTesEchMDLIQ">Full source code</a> | |
| 146 <a href="http://www.google.com/url?q=http%3A%2F%2Fexample.com&sa=D&sntz=
1&usg=AFrqEzd0oeJ1qGwYPoKuq1dTesEchMDLIQ">Install extension</a> | 142 <a href="http://www.google.com/url?q=http%3A%2F%2Fexample.com&sa=D&sntz=
1&usg=AFrqEzd0oeJ1qGwYPoKuq1dTesEchMDLIQ">Install extension</a> |
| 147 </div> | 143 </div> |
| 148 --> | 144 --> |
| 149 <!-- END AUTHORED CONTENT --> | 145 <!-- END AUTHORED CONTENT --> |
| OLD | NEW |