Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to develop internet explorer add-on

Can we create add-on for IE? If yes where can i find required resources/docs?

like image 714
malay Avatar asked Aug 06 '09 05:08

malay


People also ask

How do I enable add-ons for all users in Internet Explorer?

In the Group Policy editor, go to: Computer Configuration\Administrative Templates\Windows Components\Internet Explorer. Double-click Automatically activate/enable newly installed add-ons and select Enabled.

How do I open Internet Explorer in Windows 10 without add-ons?

Start> Run (or Windows logo key + r) type in iexplore.exe -extoff then hit enter.

Where are IE plugins stored?

Internet Explorer Browser plug-ins are displayed under the Toolbars and Extensions category, along with any browser toolbars and other type of ActiveX add-ons you have installed. Note that many are hidden by default — click the Show box at the bottom-left corner of the screen and select All add-ons to view them all.

How do I enable add-ons in Internet Explorer 11 registry?

Option 3 – Registry Hold the Windows Key and press “R” to bring up the “Run” dialog box. Type “regedit“, then press “Enter“. Select “Yes” if prompted to allow access by User Account Control. Set the value for “Enable Browser Extensions“.


4 Answers

Some references,

  • At MSDN blogs -- Writing IE AddOns,
  • The Business of Software recent discussion

A New IE Add-on Site -- reference.

The site has two objectives: to make it easier for users to find valuable add-ons and to promote our partners who develop add-ons.

You can have your add-on included by submitting it through the Internet Explorer Add-on site and you no longer have to be a member of the Microsoft Partner program to be included.


Add-on-CON blog.

like image 177
nik Avatar answered Oct 23 '22 09:10

nik


You can use Microsoft's SpicIE which wraps all the com features of IE, so you can simply develop your own extensions (toolbars, context menu items, etc) using managed code (such as c#, vb.net)

http://code.msdn.microsoft.com/SpicIE

like image 42
Nissim Avatar answered Oct 23 '22 10:10

Nissim


You can just develop a Google Chrome extension (easy peasy Japanesey and great documentation) and use the Google Chrome "IE Tab" extension to test IE functionality.

like image 34
MacGyver Avatar answered Oct 23 '22 10:10

MacGyver


This is a good reference from Eric Law (Microsoft) in the different ways to develop Internet Explorer add-ons. Be sure to install the IEToys linked in the post to see some DHTML examples with source code.

Powering up with Internet Explorer Extensibility: http://blogs.msdn.com/b/ie/archive/2005/09/06/461675.aspx

Enhance IE Add-on Development: http://www.enhanceie.com/ie/dev.asp

IEToys: http://www.bayden.com/ietoys/

like image 22
Ciaran Avatar answered Oct 23 '22 10:10

Ciaran