8

Is there a way to make a Firefox plugin intercept certain requests and respond to them without hitting the network?

Example: every time the browser is about to request http://www.example.com/page.html, the plugin automatically returns "Hello world!" for that page.

Cheers!

Ro Marcus Westin
  • 28,490
  • 4
  • 18
  • 11

3 Answers3

8

Tamper Data is a good one.

Use tamperdata to view and modify HTTP/HTTPS headers and post parameters.

Security test web applications by modifying POST parameters.

You can checkout tamper data sources and see how the extension works in mozdev and borrow some ideas, or get in touch with the author in adamsplugins [AT] gmail {DOT} com.

I don't know if it's exactly what you're looking for, but it's really powerful. I use it a lot with Firebug, so you can edit your pages on the fly and test for some behaviors.

Community
  • 1
  • 1
GmonC
  • 10,924
  • 1
  • 30
  • 38
  • This is a plugin - I need to know how to write a plugin that does something similar. If you know where the tamper source code is, that would be awesome! – Ro Marcus Westin Nov 05 '09 at 04:45
  • in tamper data u still hit the server, if u want to edit the response use fiddler, an external proxy – Jordi P.S. Jun 16 '12 at 00:43
1

If you want to modify the responses Fiddler is your friend. You can even modify libraries and add scripts on your will.

http://fiddler2.com/fiddler2/

Jordi P.S.
  • 3,838
  • 7
  • 36
  • 59
0

You could craft an extension that "rewrites" the anchor elements and inserts the javascript you need.

I am pretty sure you can do this with a Greasemonkey script but it's been a while. I know you can definitely do this on Chrome.

jldupont
  • 93,734
  • 56
  • 203
  • 318