I have encountered a huge roadblock in the development of my Google Chrome extension. Any YouTube song which is monetized (e.g. has an advertisement) will not play.
This is documented here: https://developers.google.com/youtube/flash_api_reference_as2#Events
as well as here: Some videos not playing through YouTube API
Previously, I had been using YouTube's Flash API. This worked great until I attempted to deploy my extension. At that point I encountered huge security issues which locked down the app due to insufficient privileges. As such, I rewrote the player to use the iFrame API instead of the Flash API.
The iFrame API allowed me to deploy successfully without any Flash security concerns, but now I am unable to play any song with an advertisement in it.
Does anyone know of a work around for this?
Edit:
My extension can be downloaded here: http://www.meomixes.com/
The source for the extension can be seen here: http://github.com/MeoMix/YouPod
As an example, this song works perfectly OK for me: http://www.youtube.com/watch?v=QXtPoNfOYSo
This song, however, throws an error upon playing: http://www.youtube.com/watch?v=_dfVAAWbLUY
Note that the second song has been monetized.


