| OLD | NEW |
| 1 <p id="classSummary"> | |
| 2 Use the <code>chrome.webNavigation</code> module to receive | |
| 3 notifications about the status of navigations requests in-flight. | |
| 4 </p> | |
| 5 | |
| 6 <h2 id="manifest">Manifest</h2> | 1 <h2 id="manifest">Manifest</h2> |
| 7 <p> | 2 <p> |
| 8 All <code>chrome.webNavigation</code> methods and events require you to declare | 3 All <code>chrome.webNavigation</code> methods and events require you to declare |
| 9 the "webNavigation" permission in the <a href="manifest.html">extension | 4 the "webNavigation" permission in the <a href="manifest.html">extension |
| 10 manifest</a>. | 5 manifest</a>. |
| 11 For example: | 6 For example: |
| 12 </p> | 7 </p> |
| 13 | 8 |
| 14 <pre>{ | 9 <pre>{ |
| 15 "name": "My extension", | 10 "name": "My extension", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 The user used the Forward or Back button to initiate the navigation. | 155 The user used the Forward or Back button to initiate the navigation. |
| 161 </td> | 156 </td> |
| 162 </tr> | 157 </tr> |
| 163 <tr> | 158 <tr> |
| 164 <td>"from_address_bar"</td> | 159 <td>"from_address_bar"</td> |
| 165 <td> | 160 <td> |
| 166 The user initiated the navigation from the address bar (aka Omnibox). | 161 The user initiated the navigation from the address bar (aka Omnibox). |
| 167 </td> | 162 </td> |
| 168 </tr> | 163 </tr> |
| 169 </table> | 164 </table> |
| OLD | NEW |