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.