We are using a proprietary document viewer which doesn't play terribly nice with the Pepper version of Flash found in some flavors of Chrome, so I'd like to be able to detect it and redirect to the same content in a different format.
Since this version seems to lag behind the NPAPI one, I have been using FlashDetect to look for the version number but this requires daily updating. I'd rather not look at the UserAgent since it's the flash architecture causing the trouble and not the browser, but is there any method of doing this with Javascript?
I think it should be done this way:
Demo on jsFiddle.
UPD №1: Not sure if needed, but I wrote a little explanation:
If our browser has a MIME types enumeration, we can get a plugin associated with a specified type. So we're getting plugin which associated with
'application/x-shockwave-flash'
and check if its filename is'pepflashplayer.dll'
. I think that this name is constant and will not be changed in future.UPD №2:
To enable/disable PPAPI in Google Chrome, you should go to this page:
chrome://plugins/
(Sorry, this URL needs to be pasted directly into the address bar.)
UPD №3:
I did some investigation and found an interesting article that helped me to implement a cross-platform solution. I think that this code should work on all OS:
Check out an updated fiddle.
UPD №4:
Slightly changed the code to meet today's realities. Now condition looks like this:
Check out jsFiddle.
I couldn't get the other examples to work, but the following code works for me on both Mac and PC with Chrome PPAPI enabled or disabled. Also works correctly on other browsers.
Note: Requires underscore.js. Fiddle here.
I made a cleaner version of this method using regexp. Includes tests.
http://jsfiddle.net/YNCVh/
>>> Currently Running Pepper? true
>>> Test Case Plugin Matched? pepflashplayer.dll : true
>>> Test Case Plugin Matched? PepperFlashPlayer.plugin : true
>>> Test Case Plugin Matched? libpepflashplayer.so : true
I know you asked for Javascript, but this can also be done (more easily) in Flash. Just check
Source
A version of Darren's check that doesn't require Underscore.js
}