0

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 ?

Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055
Stephane
  • 4,978
  • 9
  • 51
  • 86

1 Answers1

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