Reputation: 3809
I was excited to find the documentation of the url_handlers manifest attribute here: http://developer.chrome.com/apps/manifest/url_handlers.html
I learned about it by reading various threads on the chrome developer forums, and some SO questions related to it. So then I tried it, and I got an error saying that it was only available in the Dev channel, not the stable channel. (I then downloaded the dev channel version, and it works just as documented.)
Does google document someplace which APIs are actually released, and which ones are just teasing us poor developers?
Is there some way for me to track an API feature, so I can start using it as soon as it is released to the stable channel?
Upvotes: 1
Views: 64
Reputation: 4672
The API Index page has Chrome release numbers next to each API family. For manifest features, it's not as user-friendly. You must visit the corresponding configuration file in the source code and see the availability of a given manifest key. In this case, as you can see, url_handlers is dev-channel-only at this time.
Upvotes: 1