I wanted to disable pepflashplayer.dll(this file is responsible for playing flash content on web pages), programmatically (through java script or some other means), but not getting any way to do that.
Instead what I found that we can go to chrome://plugins url and then by clicking on disable link for this dll we can achieve this, but I do not want this manual way of doing this.
Please suggest some way.
I wanted to disable pepflashplayer.dll(this file is responsible for playing flash content on web pages), programmatically (through java script or some other means), but not getting any way to do that.
Instead what I found that we can go to chrome://plugins url and then by clicking on disable link for this dll we can achieve this, but I do not want this manual way of doing this.
Please suggest some way.
Share Improve this question edited Nov 15, 2012 at 12:29 Some Guy 16.2k10 gold badges60 silver badges68 bronze badges asked Nov 15, 2012 at 12:22 Ashish MittalAshish Mittal 7034 gold badges14 silver badges34 bronze badges 4- 1 As far as pure JavaScript is concerned, it is out of range of its power. Perhaps an extension could assist you, but the user would have to install that. However, once installed your site could municate with the extension and enable or disable, but I have no clue of where to point you to. Why do you need this in the first place? – Kiruse Commented Nov 15, 2012 at 12:32
- 1 Thanks for info, but this flash player is given by chrome browsers which has couple of issues, so we want our users to use adobe flash player instead. We dont want each of our user to go and manually do it. so that is the reason while installing our ponent we want to disable it. Anyways can you tell me the way to automatically install the extensions like mozilla. I have manifest.json file for my extension , now when the first time when chrome will run it should pick that manifest and ask the user to add it. How can we do this in chrome? – Ashish Mittal Commented Nov 15, 2012 at 13:24
- I can't help you a lot on this topic, I don't do a lot of browser-specific coding. This is what Google came up with: also on StackOverflow and Chromium Project. Maybe something's in there that helps you out. I guess your best bet is to use an external crx package. – Kiruse Commented Nov 15, 2012 at 18:56
- Just a side note: disabling the pepflashplayer is also the resolution to the "HBO GO cannot play this show at this time. Please try again later. [Code D-1006]" error on HBOGo. ! – fjxx Commented Aug 20, 2013 at 1:51
3 Answers
Reset to default 2It's simple!
1) In Chrome go to: chrome://plugins
2) disable: Adobe Flash Player (maybe the first option)
3) and now install the flashplayer of your OS version (they'll use your default flash player version)
You can try with https://developer.chrome./extensions/types.html API, for enabling and disabling installed types
So, this is what I did and it's working so far.
In Chrome's address bar type: chrome:plugins
There you'll find the Adobe Flash Player plugins, disable the pep dll first, then search for the location of the pep dll file, go there and not only delete the dll file but also delete the folder named PepperFlash.
Restart your puter and thats it. That worked for me.