I need to extend firebug to use the link extracted from the webpage(when a download from any link in the page is initiated) to send it to another machine where it will be downloaded. I was planning to use firebug to extract this link for me. If there is any other way I can get this information from the browser, even that would be appreciated.
Share
actually, its bad idea to use events to detect things like http requests,the power of firefox xul language gives you the ability to detect the all browsers requests/response then you can decide what links you need from the request/response header:
you can use “http-observe” witch actually Firebug use for the net panel
– here is the link for “http-observe” in mozilla MDN [https://developer.mozilla.org/en/Setting_HTTP_request_headers][1]
– also here is a simple example for “http-observe”