I'm trying to understand (and possibly implement) how some file downloaders detect a download in my browser and automatically start downloading in replacement of the browser internal download module. Any idea how it's done especially related to C# or Java coding ?
Asked
Active
Viewed 275 times
0
-
Is Firefox the only browser you need to support? – M.Babcock Dec 18 '11 at 02:23
-
of course no also IE,Safari,Opera and Chrome – Stephane Dec 18 '11 at 07:10
-
Then I suggest you do your own research for each browser. Each one requires its own method from what I understand and have their own quirks. Please remember that SO is not your personal R&D service. – M.Babcock Dec 18 '11 at 07:15
1 Answers
2
In Firefox, download managers are implemented as Extensions (plug-ins). A good starting place would be here

M.Babcock
- 18,753
- 6
- 54
- 84
-
+1 Also, take a look @ http://stackoverflow.com/questions/3580937/how-to-hook-the-download-dialog-in-a-firefox-extension for Firefox specific example. – PlagueEditor Dec 18 '11 at 00:13