I am wondering, if there is any way to write a plug-in for IE(7\8\9), which would be able to change the html displayed in the browser and would not require user interaction(e.g. clicking context menus).

What I am trying to achieve:

  • When user visits one of the "supported" web-sites the plug-in automatically(no user action required) extracts some of the links(acc. to pattern varying from site to site)
  • Plug-in posts those links to some server and gets response back(json)
  • Plug-in modifies the html of the visiting site, according to the response data(attaches some images, JS, etc)
  • It would be nice to enable\disable plug-in from IE GUI.
  • It would be nice to implement this in .NET or Html+JS.

I looked and tried the samples from:

  • SpicIE framework(http://code.msdn.microsoft.com/SpicIE). It is COM based, but usable. Can attach handler to "document_complete" event. Unfortunately found no way in the docs or samples(http://code.msdn.microsoft.com/SpicIEContrib) to pass the altered Html back to the browser. Everything is a "read-only".
  • IE Toys(http://www.bayden.com/ietoys/). The "Delete images" sample is very sweet, uses only JS, which would be perfectly acceptable for me... but unfortunately the samples work only when user clicks a context menu item, which is not acceptable in my case.
  • I also went through various resources(http://www.enhanceie.com/ie/dev.asp), MSDN, blog posts, IE add-on forums, etc, but found no samples or clues which direction to go.

Any advice or clue, where to search would be greatly appreciated.

link|improve this question
2  
You're talking about performing a cross-site request forgery attack. Posting to another site without user knowledge or interaction is an unacceptable practice. Even if it can be done, you should be flogged for even considering doing it. – David Stratton Jan 12 '11 at 19:15
Well, the user has to install the plug-in, so he agrees to the terms and conditions. Anyway I am to provide unistalltaion and enable/disable options. – Warvick Jan 13 '11 at 12:28
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.