AverveViore
New Member
I've got a website that we are requiring to use Adobe Reader's plugin, and as a result we are running into trouble with the generic PDF plugin built into Chrome(NOTE: Please don't answer this question with 'if you have a problem with the generic PDF plugin, please file a bug with Chrome so we can get this fixed'...we have specific reasons for requiring the Adobe plugin...this isn't a question on that topic)As a result I've built a script that checks if the generic plugin is the currently active plugin (based on the 'navigator.mimeTypes["application/pdf"].enabledPlugin.name') and this works wonderfully for telling our clients that they do not have the right plugin enabled. From there we prompt them with step by step instructions on enabling the correct plugin.That being said, it would be ideal if we could tell them to click a link to launch the plugin management page, rather than telling them to enter 'chrome://plugins' into their web browserI've tried setting 'chrome://plugins/' and 'aboutlugins' as the href location of an anchor tag but clicking it does nothing (which I assume is by design)...I also tried using window.open('chrome://plugins') and 'aboutlugins' and this did not work either...is it possible to launch this page from javascript?If this is not an option, can we write a chrome extension that automatically switches the active plugin for our clients?