OLD | NEW |
1 <div id="pageData-name" class="pageData">WebNavigation API</div> | |
2 | |
3 <!-- BEGIN AUTHORED CONTENT --> | |
4 <p id="classSummary"> | 1 <p id="classSummary"> |
5 Use the <code>chrome.webNavigation</code> module to receive | 2 Use the <code>chrome.webNavigation</code> module to receive |
6 notifications about the status of navigations requests in-flight. | 3 notifications about the status of navigations requests in-flight. |
7 </p> | 4 </p> |
8 | 5 |
9 <h2>Manifest</h2> | 6 <h2>Manifest</h2> |
10 <p> | 7 <p> |
11 All <code>chrome.webNavigation</code> methods and events require you to declare | 8 All <code>chrome.webNavigation</code> methods and events require you to declare |
12 the "webNavigation" permission in the <a href="manifest.html">extension | 9 the "webNavigation" permission in the <a href="manifest.html">extension |
13 manifest</a>. | 10 manifest</a>. |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 <td> | 159 <td> |
163 The user used the Forward or Back button to initiate the navigation. | 160 The user used the Forward or Back button to initiate the navigation. |
164 </td> | 161 </td> |
165 </tr> | 162 </tr> |
166 <tr> | 163 <tr> |
167 <td>"from_address_bar"</td> | 164 <td>"from_address_bar"</td> |
168 <td> | 165 <td> |
169 The user initiated the navigation from the address bar (aka Omnibox). | 166 The user initiated the navigation from the address bar (aka Omnibox). |
170 </td> | 167 </td> |
171 </tr> | 168 </tr> |
172 </table> | 169 </table> |
173 | |
174 <!-- END AUTHORED CONTENT --> | |
OLD | NEW |