Reputation: 343
I would like to known if the webNavigation API is still experimental, because I need to use chrome.experimental.webNavigation.onBeforeNavigate.addListener in a chrome extension. So far I found http://code.google.com/chrome/extensions/trunk/webNavigation.html and http://code.google.com/chrome/extensions/experimental.webNavigation.html - which one is valid?
Upvotes: 0
Views: 740
Reputation: 8472
webNavigation
went stable in Chrome 16, which just landed minutes ago! http://code.google.com/chrome/extensions/webNavigation.html
Upvotes: 3
Reputation: 47833
The webNavigation
API is still experimental. The first link has /trunk/ in it which referes to the prerelease documentation matching Chrome Canary or Chromium. You can read more about the documentation versions here. It looks like Chrome 17 is the planned milestone for webNavigation
but that could get pushed back.
Upvotes: 0