Create an Internet Explorer Plugin

I am having problems finding resources on the network on how to create a plugin for IE (6 and 7). You do not know good sites / tutorials on this subject?

By the way, this is why I want to do this: we have a web application connected to another; that is, on a specific page, you can run a bookmarklet (bookmark with javascript), which will analyze the page and send data to a second web application. This has worked great the past 2 years.

Now they want to update the application, and the information that the bookmarks used to extract is now spread over 2 pages.

Therefore, I plan that the plugin will search for each loaded URL, and if it matches this template, analyze the page and save the data. If the second page is loaded (url template again), then a button will appear on the page that launches another web application with the extracted data.

Do you see any problems with this? (bonus points: one of the two pages contains frames)

+3
source share
1 answer

Here is a sample browser helper object doing something similar. Perhaps in your case the event will be DISPID_DOWNLOADBEGIN (since you want to catch any access to the URI, not just the ones that were entered by the user).

, , . , - AJAX.

+2

All Articles